[rkward-cvs] SF.net SVN: rkward: [1676] trunk/rkward/rkward/plugins

kapatp at users.sourceforge.net kapatp at users.sourceforge.net
Wed Mar 21 01:48:49 UTC 2007


Revision: 1676
          http://svn.sourceforge.net/rkward/?rev=1676&view=rev
Author:   kapatp
Date:     2007-03-20 18:48:49 -0700 (Tue, 20 Mar 2007)

Log Message:
-----------
Step 3 of 4: Update: Discrete CLT plugins

Modified Paths:
--------------
    trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.php
    trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.rkh
    trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.xml
    trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.php
    trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.rkh
    trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.xml
    trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.php
    trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.rkh
    trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.xml
    trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.php
    trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.rkh
    trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.xml
    trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.php
    trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.rkh
    trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.xml
    trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.php
    trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.rkh
    trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.xml
    trunk/rkward/rkward/plugins/plots/plot_stepfun_options.rkh

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.php
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.php	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.php	2007-03-21 01:48:49 UTC (rev 1676)
@@ -43,17 +43,8 @@
 		$histplotoptions = getRK_val ("histogram_opt.code.printout"); // options that goes into plot.histogram()
 		$histplotoptions .= $plotoptions; // generic plot options
 	} elseif ($fun == "dist") {
-		$ecdfoptions = "";
-		$col_y0 = getRK_val ("col_y0.code.printout");
-		$col_y1 = getRK_val ("col_y1.code.printout");
-		if (($col_y0 != "") && ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line=c({$col_y0},{$col_y1})";
-		} elseif (($col_y0 != "") || ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line={$col_y0}{$col_y1}";
-		} // col.01line option to plot.ecdf()
-
 		$normFun = "pnorm"; // draw normal cdf on the ecdf plot
-		$plotoptions .= $ecdfoptions . getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
+		$plotoptions .= getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
 	}
 
 	$yLim = ""; // initialise the ylim option

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.rkh	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.rkh	2007-03-21 01:48:49 UTC (rev 1676)
@@ -22,8 +22,6 @@
 		<setting id="histogram_opt">The 'Frequency' checkbox is unavailable because, in this situation, drawing the histogram with <i>freq=TRUE</i> doesnot make sense. Also, since histogram is the main plot, 'Add to current plot' checkbox has also been disabled. See RKWard help on <link href="rkward://component/histogram_options"/> for other histogram centric details.</setting>
 		<caption id="tab_distfunction"/>
 		<setting id="dist_stepfun" label="Stepfunction options">See the help on the <link href="rkward://component/plot_stepfun_options"/> plugin. The 'Add to current plot' option is unavailable.</setting>
-		<setting id="frame_col_y0"></setting>
-		<setting id="frame_col_y1"> The above two options are used to set the color for the horizontal lines at y = 0 and y = 1 respectively. Specifically, this is the <i>col.01line</i> argument to <b>ecdf</b>. If only the one is provided (i.e the other is set as 'Default') then both the line are of the specified color. Otherwise (i.e., when both the colors are provided) both the colors are provided as a character vector.</setting>
 	</settings>
 	<related>
 		<ul>

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.xml
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.xml	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_binomial_clt.xml	2007-03-21 01:48:49 UTC (rev 1676)
@@ -26,9 +26,8 @@
 
 		<set id="dist_stepfun.allow_addtoplot" to="false" />
 		<set id="dist_stepfun.default_verticals" to="false" />
+		<set id="dist_stepfun.visible_col01line" to="true"/>
 
-		<set id="col_y0.argument" to=""/>
-		<set id="col_y1.argument" to=""/>
 </logic>
 	<dialog label="Central Limit Theorem: Binomial to Normal" >
 		<tabbook>
@@ -78,14 +77,6 @@
 
 			<tab id="tab_distfunction" label="ECDF options">
 				<embed id="dist_stepfun" component="rkward::plot_stepfun_options" label=""/>
-				<row>
-						<frame id="frame_col_y0" label="For y = 0 line">
-							<embed id="col_y0" component="rkward::color_chooser" label="Color"/>
-						</frame>
-						<frame id="frame_col_y1" label="For y = 1 line">
-							<embed id="col_y1" component="rkward::color_chooser" label="Color"/>
-						</frame>
-				</row>
 				<stretch/>
 			</tab>
 

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.php
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.php	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.php	2007-03-21 01:48:49 UTC (rev 1676)
@@ -42,17 +42,8 @@
 		$histplotoptions = getRK_val ("histogram_opt.code.printout"); // options that goes into plot.histogram()
 		$histplotoptions .= $plotoptions; // generic plot options
 	} elseif ($fun == "dist") {
-		$ecdfoptions = "";
-		$col_y0 = getRK_val ("col_y0.code.printout");
-		$col_y1 = getRK_val ("col_y1.code.printout");
-		if (($col_y0 != "") && ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line=c({$col_y0},{$col_y1})";
-		} elseif (($col_y0 != "") || ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line={$col_y0}{$col_y1}";
-		} // col.01line option to plot.ecdf()
-
 		$normFun = "pnorm"; // draw normal cdf on the ecdf plot
-		$plotoptions .= $ecdfoptions . getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
+		$plotoptions .= getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
 	}
 
 	$yLim = ""; // initialise the ylim option

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.rkh	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.rkh	2007-03-21 01:48:49 UTC (rev 1676)
@@ -22,8 +22,6 @@
 		<setting id="histogram_opt">See Binomial CLT for details.</setting>
 		<caption id="tab_distfunction"/>
 		<setting id="dist_stepfun">See Binomial CLT for details.</setting>
-		<setting id="frame_col_y0"></setting>
-		<setting id="frame_col_y1">See Binomial CLT for details.</setting>
 	</settings>
 	<related>
 		<ul>

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.xml
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.xml	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_geometric_clt.xml	2007-03-21 01:48:49 UTC (rev 1676)
@@ -26,9 +26,8 @@
 
 		<set id="dist_stepfun.allow_addtoplot" to="false" />
 		<set id="dist_stepfun.default_verticals" to="false" />
+		<set id="dist_stepfun.visible_col01line" to="true"/>
 
-		<set id="col_y0.argument" to=""/>
-		<set id="col_y1.argument" to=""/>
 </logic>
 	<dialog label="Central Limit Theorem: Geometric to Normal" >
 		<tabbook>
@@ -77,14 +76,6 @@
 
 			<tab id="tab_distfunction" label="ECDF options">
 				<embed id="dist_stepfun" component="rkward::plot_stepfun_options" label=""/>
-				<row>
-						<frame id="frame_col_y0" label="For y = 0 line">
-							<embed id="col_y0" component="rkward::color_chooser" label="Color"/>
-						</frame>
-						<frame id="frame_col_y1" label="For y = 1 line">
-							<embed id="col_y1" component="rkward::color_chooser" label="Color"/>
-						</frame>
-				</row>
 				<stretch/>
 			</tab>
 

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.php
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.php	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.php	2007-03-21 01:48:49 UTC (rev 1676)
@@ -44,17 +44,8 @@
 		$histplotoptions = getRK_val ("histogram_opt.code.printout"); // options that goes into plot.histogram()
 		$histplotoptions .= $plotoptions; // generic plot options
 	} elseif ($fun == "dist") {
-		$ecdfoptions = "";
-		$col_y0 = getRK_val ("col_y0.code.printout");
-		$col_y1 = getRK_val ("col_y1.code.printout");
-		if (($col_y0 != "") && ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line=c({$col_y0},{$col_y1})";
-		} elseif (($col_y0 != "") || ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line={$col_y0}{$col_y1}";
-		} // col.01line option to plot.ecdf()
-
 		$normFun = "pnorm"; // draw normal cdf on the ecdf plot
-		$plotoptions .= $ecdfoptions . getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
+		$plotoptions .= getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
 	}
 
 	$yLim = ""; // initialise the ylim option

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.rkh	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.rkh	2007-03-21 01:48:49 UTC (rev 1676)
@@ -22,8 +22,6 @@
 		<setting id="histogram_opt">See Binomial CLT for details.</setting>
 		<caption id="tab_distfunction"/>
 		<setting id="dist_stepfun">See Binomial CLT for details.</setting>
-		<setting id="frame_col_y0"></setting>
-		<setting id="frame_col_y1">See Binomial CLT for details.</setting>
 	</settings>
 	<related>
 		<ul>

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.xml
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.xml	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_hypergeometric_clt.xml	2007-03-21 01:48:49 UTC (rev 1676)
@@ -26,9 +26,8 @@
 
 		<set id="dist_stepfun.allow_addtoplot" to="false" />
 		<set id="dist_stepfun.default_verticals" to="false" />
+		<set id="dist_stepfun.visible_col01line" to="true"/>
 
-		<set id="col_y0.argument" to=""/>
-		<set id="col_y1.argument" to=""/>
 </logic>
 	<dialog label="Central Limit Theorem: Hypergeometric to Normal" >
 		<tabbook>
@@ -79,14 +78,6 @@
 
 			<tab id="tab_distfunction" label="ECDF options">
 				<embed id="dist_stepfun" component="rkward::plot_stepfun_options" label=""/>
-				<row>
-						<frame id="frame_col_y0" label="For y = 0 line">
-							<embed id="col_y0" component="rkward::color_chooser" label="Color"/>
-						</frame>
-						<frame id="frame_col_y1" label="For y = 1 line">
-							<embed id="col_y1" component="rkward::color_chooser" label="Color"/>
-						</frame>
-				</row>
 				<stretch/>
 			</tab>
 

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.php
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.php	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.php	2007-03-21 01:48:49 UTC (rev 1676)
@@ -52,17 +52,8 @@
 		$histplotoptions = getRK_val ("histogram_opt.code.printout"); // options that goes into plot.histogram()
 		$histplotoptions .= $plotoptions; // generic plot options
 	} elseif ($fun == "dist") {
-		$ecdfoptions = "";
-		$col_y0 = getRK_val ("col_y0.code.printout");
-		$col_y1 = getRK_val ("col_y1.code.printout");
-		if (($col_y0 != "") && ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line=c({$col_y0},{$col_y1})";
-		} elseif (($col_y0 != "") || ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line={$col_y0}{$col_y1}";
-		} // col.01line option to plot.ecdf()
-
 		$normFun = "pnorm"; // draw normal cdf on the ecdf plot
-		$plotoptions .= $ecdfoptions . getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
+		$plotoptions .= getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
 	}
 
 	$yLim = ""; // initialise the ylim option

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.rkh	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.rkh	2007-03-21 01:48:49 UTC (rev 1676)
@@ -22,8 +22,6 @@
 		<setting id="histogram_opt">See Binomial CLT for details.</setting>
 		<caption id="tab_distfunction"/>
 		<setting id="dist_stepfun">See Binomial CLT for details.</setting>
-		<setting id="frame_col_y0"></setting>
-		<setting id="frame_col_y1">See Binomial CLT for details.</setting>
 	</settings>
 	<related>
 		<ul>

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.xml
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.xml	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_negbinomial_clt.xml	2007-03-21 01:48:49 UTC (rev 1676)
@@ -26,10 +26,8 @@
 
 		<set id="dist_stepfun.allow_addtoplot" to="false" />
 		<set id="dist_stepfun.default_verticals" to="false" />
+		<set id="dist_stepfun.visible_col01line" to="true"/>
 
-		<set id="col_y0.argument" to=""/>
-		<set id="col_y1.argument" to=""/>
-
 		<convert id="useprob" mode="equals" sources="param.string" standard="pprob" />
 		<connect client="prob.enabled" governor="useprob" />
 		<connect client="size_trial.visible" governor="useprob" />
@@ -97,14 +95,6 @@
 
 			<tab id="tab_distfunction" label="ECDF options">
 				<embed id="dist_stepfun" component="rkward::plot_stepfun_options" label=""/>
-				<row>
-					<frame id="frame_col_y0" label="For y = 0 line">
-						<embed id="col_y0" component="rkward::color_chooser" label="Color"/>
-					</frame>
-					<frame id="frame_col_y1" label="For y = 1 line">
-						<embed id="col_y1" component="rkward::color_chooser" label="Color"/>
-					</frame>
-				</row>
 				<stretch/>
 			</tab>
 

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.php
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.php	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.php	2007-03-21 01:48:49 UTC (rev 1676)
@@ -42,17 +42,8 @@
 		$histplotoptions = getRK_val ("histogram_opt.code.printout"); // options that goes into plot.histogram()
 		$histplotoptions .= $plotoptions; // generic plot options
 	} elseif ($fun == "dist") {
-		$ecdfoptions = "";
-		$col_y0 = getRK_val ("col_y0.code.printout");
-		$col_y1 = getRK_val ("col_y1.code.printout");
-		if (($col_y0 != "") && ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line=c({$col_y0},{$col_y1})";
-		} elseif (($col_y0 != "") || ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line={$col_y0}{$col_y1}";
-		} // col.01line option to plot.ecdf()
-
 		$normFun = "pnorm"; // draw normal cdf on the ecdf plot
-		$plotoptions .= $ecdfoptions . getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
+		$plotoptions .= getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
 	}
 
 	$yLim = ""; // initialise the ylim option

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.rkh	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.rkh	2007-03-21 01:48:49 UTC (rev 1676)
@@ -22,8 +22,6 @@
 		<setting id="histogram_opt">See Binomial CLT for details.</setting>
 		<caption id="tab_distfunction"/>
 		<setting id="dist_stepfun">See Binomial CLT for details.</setting>
-		<setting id="frame_col_y0"></setting>
-		<setting id="frame_col_y1">See Binomial CLT for details.</setting>
 	</settings>
 	<related>
 		<ul>

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.xml
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.xml	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_poisson_clt.xml	2007-03-21 01:48:49 UTC (rev 1676)
@@ -26,9 +26,8 @@
 
 		<set id="dist_stepfun.allow_addtoplot" to="false" />
 		<set id="dist_stepfun.default_verticals" to="false" />
+		<set id="dist_stepfun.visible_col01line" to="true"/>
 
-		<set id="col_y0.argument" to=""/>
-		<set id="col_y1.argument" to=""/>
 	</logic>
 	<dialog label="Central Limit Theorem: Poisson to Normal" >
 		<tabbook>
@@ -77,14 +76,6 @@
 
 			<tab id="tab_distfunction" label="ECDF options">
 				<embed id="dist_stepfun" component="rkward::plot_stepfun_options" label=""/>
-				<row>
-					<frame id="frame_col_y0" label="For y = 0 line">
-						<embed id="col_y0" component="rkward::color_chooser" label="Color"/>
-					</frame>
-					<frame id="frame_col_y1" label="For y = 1 line">
-						<embed id="col_y1" component="rkward::color_chooser" label="Color"/>
-					</frame>
-				</row>
 				<stretch/>
 			</tab>
 

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.php
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.php	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.php	2007-03-21 01:48:49 UTC (rev 1676)
@@ -43,17 +43,8 @@
 		$histplotoptions = getRK_val ("histogram_opt.code.printout"); // options that goes into plot.histogram()
 		$histplotoptions .= $plotoptions; // generic plot options
 	} elseif ($fun == "dist") {
-		$ecdfoptions = "";
-		$col_y0 = getRK_val ("col_y0.code.printout");
-		$col_y1 = getRK_val ("col_y1.code.printout");
-		if (($col_y0 != "") && ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line=c({$col_y0},{$col_y1})";
-		} elseif (($col_y0 != "") || ($col_y1 != "")) {
-			$ecdfoptions .= ", col.01line={$col_y0}{$col_y1}";
-		} // col.01line option to plot.ecdf()
-
 		$normFun = "pnorm"; // draw normal cdf on the ecdf plot
-		$plotoptions .= $ecdfoptions . getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
+		$plotoptions .= getRK_val ("dist_stepfun.code.printout"); // plot.ecdf() and plot.stepfun() options
 	}
 
 	$yLim = ""; // initialise the ylim option

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.rkh	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.rkh	2007-03-21 01:48:49 UTC (rev 1676)
@@ -22,8 +22,6 @@
 		<setting id="histogram_opt">See Binomial CLT for details.</setting>
 		<caption id="tab_distfunction"/>
 		<setting id="dist_stepfun">See Binomial CLT for details.</setting>
-		<setting id="frame_col_y0"></setting>
-		<setting id="frame_col_y1">See Binomial CLT for details.</setting>
 	</settings>
 	<related>
 		<ul>

Modified: trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.xml
===================================================================
--- trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.xml	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/distributions/clt/plot_wilcoxon_clt.xml	2007-03-21 01:48:49 UTC (rev 1676)
@@ -26,9 +26,8 @@
 
 		<set id="dist_stepfun.allow_addtoplot" to="false" />
 		<set id="dist_stepfun.default_verticals" to="false" />
+		<set id="dist_stepfun.visible_col01line" to="true"/>
 
-		<set id="col_y0.argument" to=""/>
-		<set id="col_y1.argument" to=""/>
 </logic>
 	<dialog label="Central Limit Theorem: Wilcoxon to Normal" >
 		<tabbook>
@@ -78,14 +77,6 @@
 
 			<tab id="tab_distfunction" label="ECDF options">
 				<embed id="dist_stepfun" component="rkward::plot_stepfun_options" label=""/>
-				<row>
-						<frame id="frame_col_y0" label="For y = 0 line">
-							<embed id="col_y0" component="rkward::color_chooser" label="Color"/>
-						</frame>
-						<frame id="frame_col_y1" label="For y = 1 line">
-							<embed id="col_y1" component="rkward::color_chooser" label="Color"/>
-						</frame>
-				</row>
 				<stretch/>
 			</tab>
 

Modified: trunk/rkward/rkward/plugins/plots/plot_stepfun_options.rkh
===================================================================
--- trunk/rkward/rkward/plugins/plots/plot_stepfun_options.rkh	2007-03-21 00:54:52 UTC (rev 1675)
+++ trunk/rkward/rkward/plugins/plots/plot_stepfun_options.rkh	2007-03-21 01:48:49 UTC (rev 1676)
@@ -11,7 +11,7 @@
 		<setting id="linetype">This is the <i>lty</i> argument.</setting>
 		<setting id="do_points">This is the <i>do.points</i> argument. Uncheck this option if points are NOT to be drawn.</setting>
 		<setting id="col_points">This is the <i>col.points</i> argument. Leave this as 'default' for using the standard color settings from par().</setting>
-		<setting id="col_horiz">This is the <i>col.hor</i> argument.</setting>
+		<setting id="frame_col_horiz">This is the <i>col.hor</i> argument.</setting>
 		<setting id="verticals">This is the <i>verticals</i> arguments. Uncheck this option if vertical lines are NOT to be drawn.</setting>
 		<setting id="col_vert">This is the <i>col.vert</i> argument.</setting>
 		<setting id="frame_col_y0"></setting>


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