[rkward-cvs] SF.net SVN: rkward: [1713] trunk/rkward/rkward/plugins
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Fri Mar 23 13:15:27 UTC 2007
Revision: 1713
http://svn.sourceforge.net/rkward/?rev=1713&view=rev
Author: tfry
Date: 2007-03-23 06:15:27 -0700 (Fri, 23 Mar 2007)
Log Message:
-----------
Remove an obsolete version of the skewness and kurtosis plugin
Modified Paths:
--------------
trunk/rkward/rkward/plugins/Makefile.am
Removed Paths:
-------------
trunk/rkward/rkward/plugins/descriptive/skewness_kurtosis_test.php
trunk/rkward/rkward/plugins/descriptive/skewness_kurtosis_test.xml
Modified: trunk/rkward/rkward/plugins/Makefile.am
===================================================================
--- trunk/rkward/rkward/plugins/Makefile.am 2007-03-23 13:14:37 UTC (rev 1712)
+++ trunk/rkward/rkward/plugins/Makefile.am 2007-03-23 13:15:27 UTC (rev 1713)
@@ -198,6 +198,9 @@
distributions/clt/plot_binomial_clt.php \
distributions/clt/plot_binomial_clt.xml \
distributions/clt/plot_binomial_clt.rkh \
+ distributions/clt/plot_gamma_clt.xml \
+ distributions/clt/plot_exponential_clt.xml \
+ distributions/clt/plot_chi_squared_clt.xml \
distributions/clt/plot_geometric_clt.rkh \
distributions/clt/plot_geometric_clt.php \
distributions/clt/plot_hypergeometric_clt.xml \
@@ -212,7 +215,38 @@
distributions/clt/plot_wilcoxon_clt.xml \
distributions/clt/plot_negbinomial_clt.rkh \
distributions/clt/plot_negbinomial_clt.php \
- distributions/clt/plot_poisson_clt.rkh
+ distributions/clt/plot_poisson_clt.rkh \
+ distributions/clt/plot_lognormal_clt.xml \
+ distributions/clt/plot_beta_clt.rkh \
+ distributions/clt/plot_logistic_clt.php \
+ distributions/clt/plot_uniform_clt.php \
+ distributions/clt/plot_f_clt.rkh \
+ distributions/clt/plot_gamma_clt.php \
+ distributions/clt/plot_beta_clt.xml \
+ distributions/clt/plot_normal_clt.rkh \
+ distributions/clt/plot_exponential_clt.php \
+ distributions/clt/plot_chi_squared_clt.php \
+ distributions/clt/plot_lognormal_clt.php \
+ distributions/clt/plot_f_clt.xml \
+ distributions/clt/plot_normal_clt.xml \
+ distributions/clt/plot_logistic_clt.rkh \
+ distributions/clt/plot_beta_clt.php \
+ distributions/clt/plot_uniform_clt.rkh \
+ distributions/clt/plot_gamma_clt.rkh \
+ distributions/clt/plot_exponential_clt.rkh \
+ distributions/clt/plot_chi_squared_clt.rkh \
+ distributions/clt/plot_f_clt.php \
+ distributions/clt/plot_logistic_clt.xml \
+ distributions/clt/plot_lognormal_clt.rkh \
+ distributions/clt/plot_normal_clt.php \
+ distributions/clt/plot_uniform_clt.xml \
+ distributions/clt/plot_weibull_clt.rkh \
+ distributions/clt/plot_t_clt.php \
+ distributions/clt/plot_weibull_clt.xml \
+ distributions/clt/plot_t_clt.rkh \
+ distributions/clt/plot_weibull_clt.php \
+ distributions/clt/plot_t_clt.xml \
+ distributions/clt/plot_clt_common.php
pluginsXdistributionsXtestsdir = $(kde_datadir)/rkward/distributions/tests
dist_pluginsXdistributionsXtests_DATA = \
@@ -363,8 +397,6 @@
dist_pluginsXdescriptive_DATA = \
descriptive/descriptive_statistics.php \
descriptive/descriptive_statistics.xml \
- descriptive/skewness_kurtosis_test.xml \
- descriptive/skewness_kurtosis_test.php \
descriptive/descriptive_statistics.rkh
pluginsXx11devicedir = $(kde_datadir)/rkward/x11device
Deleted: trunk/rkward/rkward/plugins/descriptive/skewness_kurtosis_test.php
===================================================================
--- trunk/rkward/rkward/plugins/descriptive/skewness_kurtosis_test.php 2007-03-23 13:14:37 UTC (rev 1712)
+++ trunk/rkward/rkward/plugins/descriptive/skewness_kurtosis_test.php 2007-03-23 13:15:27 UTC (rev 1713)
@@ -1,47 +0,0 @@
-<?
- function preprocess () {
- }
-
- function calculate () {
- $vars = "substitute (" . str_replace ("\n", "), substitute (", trim (getRK_val ("x"))) . ")";
-
-?>
-require(moments)
-
-rk.temp.objects <- list (<? echo ($vars); ?>)
-rk.temp.results <- data.frame ('Variable Name'=rep (NA, length (rk.temp.objects)), check.names=FALSE)
-i=0;
-for (var in rk.temp.objects) {
- i = i+1
- rk.temp.results$'Variable Name'[i] <- rk.get.description (var, is.substitute=TRUE)
- <?
- if (getRK_val ("skewness")) { ?>
- try (rk.temp.results$'Skewness'[i] <- skewness (eval (var), <? getRK ("narm_skewness"); ?>))
- <? }
- if (getRK_val ("kurtosis")) { ?>
- try (rk.temp.results$'Kurtosis'[i] <- kurtosis (eval (var), <? getRK ("narm_kurtosis"); ?>))
- <? }
- if (getRK_val ("length")) { ?>
- try (rk.temp.results$'Length'[i] <- length (eval (var)))
- <? }
- if (getRK_val ("nacount")) { ?>
- try (rk.temp.results$'NAs'[i] <- length (which(is.na(eval (var)))))
- <? } ?>
-}
-<?
- }
- function printout () {
-?>
-rk.header ("Skewness and Kurtosis")
-rk.results (rk.temp.results)
-<?
- }
- function cleanup () {
-
-?>
- rm (rk.temp.results)
- rm (rk.temp.objects)
- rm (var)
-<?
- }
-?>
\ No newline at end of file
Deleted: trunk/rkward/rkward/plugins/descriptive/skewness_kurtosis_test.xml
===================================================================
--- trunk/rkward/rkward/plugins/descriptive/skewness_kurtosis_test.xml 2007-03-23 13:14:37 UTC (rev 1712)
+++ trunk/rkward/rkward/plugins/descriptive/skewness_kurtosis_test.xml 2007-03-23 13:15:27 UTC (rev 1713)
@@ -1,42 +0,0 @@
-<!DOCTYPE rkplugin>
-
-<!-- This is the skewness and kurtosis plug-in-->
-
-<document>
- <code file="skewness_kurtosis_test.php"/>
- <dialog label="Skewness and Kurtosis">
- <tabbook>
- <tab label="Select Variables" >
- <row>
- <column>
- <varselector id="vars"/>
- </column>
- <column>
- <frame label="The number of the selcted values must be between 3 and 5000">
- <varslot type="numeric" multi="true" id="x" source="vars" required="true" label="variable(s):"/>
- </frame>
- <stretch/>
- </column>
- </row>
- </tab>
- <tab label="Options">
- <frame label="Skewness">
- <checkbox id="skewness" label="Skewness" value_unchecked="0" value="1" checked="true" />
- <radio id="narm_skewness" label="Calculate Skewness with Missing Values">
- <option value="na.rm = FALSE" label="FALSE"/>
- <option value="na.rm = TRUE" label="TRUE"/>
- </radio>
- </frame>
- <frame label="Kurtosis">
- <checkbox id="kurtosis" label="Kurtosis" value_unchecked="0" value="1" checked="true" />
- <radio id="narm_kurtosis" label="Calculate Kurtosis with Missing Values">
- <option value="na.rm = FALSE" label="FALSE"/>
- <option value="na.rm = TRUE" label="TRUE"/>
- </radio>
- </frame>
- <checkbox id="length" label="Show Length" value_unchecked="0" value="1" checked="false" />
- <checkbox id="nacount" label="Show Missing Values" value_unchecked="0" value="1" checked="false" />
- </tab>
- </tabbook>
- </dialog>
-</document>
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