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

tfry at users.sourceforge.net tfry at users.sourceforge.net
Sun Mar 18 20:17:13 UTC 2007


Revision: 1621
          http://svn.sourceforge.net/rkward/?rev=1621&view=rev
Author:   tfry
Date:     2007-03-18 13:17:12 -0700 (Sun, 18 Mar 2007)

Log Message:
-----------
Some (final?) corrections to t-test and update Makefile.am

Modified Paths:
--------------
    trunk/rkward/ChangeLog
    trunk/rkward/rkward/plugins/Makefile.am
    trunk/rkward/rkward/plugins/analysis/t_test_two_vars.rkh
    trunk/rkward/rkward/plugins/analysis/t_test_two_vars.xml

Modified: trunk/rkward/ChangeLog
===================================================================
--- trunk/rkward/ChangeLog	2007-03-18 20:10:42 UTC (rev 1620)
+++ trunk/rkward/ChangeLog	2007-03-18 20:17:12 UTC (rev 1621)
@@ -1,3 +1,4 @@
+- t-test plugin now also allows to calculate a paired test
 - show current working directory in the statusbar
 - add run selection action to all HTML windows
 - add custom icons for run line/selection/all

Modified: trunk/rkward/rkward/plugins/Makefile.am
===================================================================
--- trunk/rkward/rkward/plugins/Makefile.am	2007-03-18 20:10:42 UTC (rev 1620)
+++ trunk/rkward/rkward/plugins/Makefile.am	2007-03-18 20:17:12 UTC (rev 1621)
@@ -49,7 +49,8 @@
 	plots/plot_stepfun_options.rkh \
 	plots/plot_stepfun_options.xml \
 	plots/plot_stepfun_options.php \
-	plots/histogram.rkh
+	plots/histogram.rkh \
+	plots/ecdf_plot.rkh
 
 pluginsXdistributionsdir = $(kde_datadir)/rkward/distributions
 dist_pluginsXdistributions_DATA = \
@@ -207,7 +208,13 @@
 dist_pluginsXdistributionsXclt_DATA = \
 	distributions/clt/plot_binomial_clt.php \
 	distributions/clt/plot_binomial_clt.xml \
-	distributions/clt/plot_binomial_clt.rkh
+	distributions/clt/plot_binomial_clt.rkh \
+	distributions/clt/plot_geometric_clt.rkh \
+	distributions/clt/plot_geometric_clt.php \
+	distributions/clt/plot_hypergeometric_clt.xml \
+	distributions/clt/plot_hypergeometric_clt.rkh \
+	distributions/clt/plot_hypergeometric_clt.php \
+	distributions/clt/plot_geometric_clt.xml
 
 pluginsXwritetabledir = $(kde_datadir)/rkward/writetable
 dist_pluginsXwritetable_DATA = \
@@ -217,10 +224,6 @@
 pluginsX00meansdir = $(kde_datadir)/rkward/00means
 pluginsX00meansX00ttestsdir = $(kde_datadir)/rkward/00means/00ttests
 pluginsX00meansX00ttestsX00independentUsamplesdir = $(kde_datadir)/rkward/00means/00ttests/00independent_samples
-dist_pluginsX00meansX00ttestsX00independentUsamples_DATA = \
-	00means/00ttests/00independent_samples/code.php \
-	00means/00ttests/00independent_samples/description.xml
-
 pluginsXuni1D2dir = $(kde_datadir)/rkward/uni1.2
 dist_pluginsXuni1D2_DATA = \
 	uni1.2/code.php \
@@ -278,7 +281,10 @@
 dist_pluginsXanalysis_DATA = \
 	analysis/corr_matrix.php \
 	analysis/corr_matrix.xml \
-	analysis/corr_matrix.rkh
+	analysis/corr_matrix.rkh \
+	analysis/t_test_two_vars.rkh \
+	analysis/t_test_two_vars.xml \
+	analysis/t_test_two_vars.php
 
 pluginsXanalysisXansariUbradleydir = $(kde_datadir)/rkward/analysis/ansari_bradley
 dist_pluginsXanalysisXansariUbradley_DATA = \

Modified: trunk/rkward/rkward/plugins/analysis/t_test_two_vars.rkh
===================================================================
--- trunk/rkward/rkward/plugins/analysis/t_test_two_vars.rkh	2007-03-18 20:10:42 UTC (rev 1620)
+++ trunk/rkward/rkward/plugins/analysis/t_test_two_vars.rkh	2007-03-18 20:17:12 UTC (rev 1621)
@@ -13,7 +13,7 @@
 		<setting id="x">A numeric vector for the first variable</setting>
 		<setting id="y">A numeric vector for the second variable</setting>
 		<setting id="hypothesis">Alternative hypothesis (H1) of the test.</setting>
-		<setting id="paired">Whether the samples are paired (repeated measurements on the same subject) or independent. For a paired test, if the two vectors are not of equal length, there will be an error.</setting>
+		<setting id="paired">Whether the variables are paired (repeated measurements on the same subject) or independent samples. For a paired test, if the two vectors are not of equal length, there will be an error.</setting>
 		<caption id="tab_options"/>
 		<setting id="varequal">Whether to assume equal variances for the two samples. This option is implied for a paired test.</setting>
 		<setting id="conflevel">Confidence level to use.</setting>
@@ -21,8 +21,8 @@
 	</settings>
 	<related>
 		<ul>
-			<li><link href="rkward://rhelp/cor"/></li>
-			<li><link href="rkward://rhelp/cor.test"/></li>
+			<li><link href="rkward://component/F_test"/></li>
+			<li><link href="rkward://rhelp/t.test"/></li>
 		</ul>
 	</related>
 </document>

Modified: trunk/rkward/rkward/plugins/analysis/t_test_two_vars.xml
===================================================================
--- trunk/rkward/rkward/plugins/analysis/t_test_two_vars.xml	2007-03-18 20:10:42 UTC (rev 1620)
+++ trunk/rkward/rkward/plugins/analysis/t_test_two_vars.xml	2007-03-18 20:17:12 UTC (rev 1621)
@@ -10,7 +10,7 @@
 
 	<dialog label="Two Variable t-Test">
 		<tabbook>
-			<tab label="Basic settings">
+			<tab label="Basic settings" id="tab_variables">
 				<row id="basic_settings_row">
 					<varselector id="vars"/>
 					<column>
@@ -25,7 +25,7 @@
 					</column>
 				</row>
 			</tab>
-			<tab label="Options">
+			<tab label="Options" id="tab_options">
 				<checkbox id="varequal" label="assume equal variances" value="1" value_unchecked="0"/>
 				<frame label="Confidence Interval" id="confint_frame">
 					<spinbox type="real" id="conflevel" label="confidence level" min="0" max="1" initial="0.95"/>


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