[rkward-cvs] SF.net SVN: rkward: [1447] trunk/rkward/rkward/plugins/plots
nono_231 at users.sourceforge.net
nono_231 at users.sourceforge.net
Thu Feb 22 21:09:03 UTC 2007
Revision: 1447
http://svn.sourceforge.net/rkward/?rev=1447&view=rev
Author: nono_231
Date: 2007-02-22 13:09:02 -0800 (Thu, 22 Feb 2007)
Log Message:
-----------
Variable change at barplot and pareto plugins
Modified Paths:
--------------
trunk/rkward/rkward/plugins/plots/barplot.php
trunk/rkward/rkward/plugins/plots/pareto.php
Modified: trunk/rkward/rkward/plugins/plots/barplot.php
===================================================================
--- trunk/rkward/rkward/plugins/plots/barplot.php 2007-02-22 21:03:54 UTC (rev 1446)
+++ trunk/rkward/rkward/plugins/plots/barplot.php 2007-02-22 21:09:02 UTC (rev 1447)
@@ -22,8 +22,8 @@
}
function doPrintout ($final) {
- $vars = (getRK_val ("x")) ;
- $labels = (getRK_val ("labels")=="TRUE");
+ $vars = getRK_val ("x") ;
+ $labels = getRK_val ("labels")=="TRUE";
?>
rk.temp.x <- (<? echo ($vars); ?>)
if(is.factor(rk.temp.x)) {
Modified: trunk/rkward/rkward/plugins/plots/pareto.php
===================================================================
--- trunk/rkward/rkward/plugins/plots/pareto.php 2007-02-22 21:03:54 UTC (rev 1446)
+++ trunk/rkward/rkward/plugins/plots/pareto.php 2007-02-22 21:09:02 UTC (rev 1447)
@@ -25,8 +25,8 @@
}
function doPrintout ($final) {
- $vars = (getRK_val ("x")) ;
- $descriptives = (getRK_val ("descriptives")=="TRUE") ;
+ $vars = getRK_val ("x");
+ $descriptives = getRK_val ("descriptives")=="TRUE";
?>
rk.temp.x <- (<? echo ($vars); ?>)
if(is.factor(rk.temp.x)) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the rkward-tracker
mailing list