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

tfry at users.sourceforge.net tfry at users.sourceforge.net
Mon Feb 5 11:01:27 UTC 2007


Revision: 1317
          http://svn.sourceforge.net/rkward/?rev=1317&view=rev
Author:   tfry
Date:     2007-02-05 03:01:27 -0800 (Mon, 05 Feb 2007)

Log Message:
-----------
Add help files for distribution plots (Prasenjit Kapat)

Added Paths:
-----------
    trunk/rkward/rkward/plugins/distributions/plot_beta_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_binomial_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_cauchy_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_chi_squared_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_exponential_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_f_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_gamma_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_geometric_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_hypergeometric_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_logistic_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_lognormal_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_negbinomial_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_normal_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_poisson_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_t_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_tukey_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_uniform_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_weibull_distribution.rkh
    trunk/rkward/rkward/plugins/distributions/plot_wilcoxon_distribution.rkh

Added: trunk/rkward/rkward/plugins/distributions/plot_beta_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_beta_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_beta_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,35 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Beta distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="a"> shape1 paramter of the Beta distributoin.</setting>
+		<setting id="b"> shape2 paramter of the Beta distributoin.</setting>
+		<setting id="ncp">Non-centrality paramter of the Beta distribution.</setting>
+		<setting id="log">Check this box if log of the function values are to be plotted.</setting>
+		<setting id="lower">This option is valid only for plotting the distribution function. Uncheck this box if the upper tail of the distribution function (P[X > x]) is to be plotted.</setting>
+		<setting id="preview">Check this box for previewing the function plot. A new graphics window will pop up and it will be dynamically updated based on the choice of parameters. It may take a while for the window to show up. Sometimes, only an empty graphics device may get displayed, in which case, close the device (dev.off() or may be even graphics.off()), uncheck the box, wait for a while and try again. If it still persists, use only the "Submit" button to view the exported plot in the Output window.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Beta"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_binomial_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_binomial_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_binomial_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,33 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Binomial distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. Since this is a discrete distribution the function will be evaluated at all the integers between the lower quantile and the upper quantile (inclusive of the end points).</setting>
+		<setting id="size">See R reference on Binomial distribution.</setting>
+		<setting id="prob">See R reference on Binomial distribution.</setting>
+		<setting id="log">See the description given on Plot Beta help page.</setting>
+		<setting id="lower">See the description given on Plot Beta help page.</setting>
+		<setting id="preview">See the description given on Plot Beta help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Binomial"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_cauchy_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_cauchy_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_cauchy_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,34 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Cauchy distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="loc">See R reference on Cauchy distribution.</setting>
+		<setting id="scale">See R reference on Cauchy distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Cauchy"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_chi_squared_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_chi_squared_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_chi_squared_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,34 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Chi-squared distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="df">See R reference on Chi-squared distribution.</setting>
+		<setting id="ncp">See R reference on Chi-squared distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Chisquare"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_exponential_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_exponential_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_exponential_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,33 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Exponential distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="rate">See R reference on Exponential distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Exponential"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_f_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_f_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_f_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,35 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the F distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="df1">See R reference on F distribution.</setting>
+		<setting id="df2">See R reference on F distribution.</setting>
+		<setting id="ncp">See R reference on F distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/FDist"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_gamma_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_gamma_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_gamma_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,34 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Gamma distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="shape">See R reference on Gamma distribution.</setting>
+		<setting id="rate">See R reference on Gamma distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/GammaDist"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_geometric_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_geometric_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_geometric_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,32 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Geometric distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. Since this is a discrete distribution the function will be evaluated at all the integers between the lower quantile and the upper quantile (inclusive of the end points).</setting>
+		<setting id="prob">See R reference on Geometric distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Geometric"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_hypergeometric_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_hypergeometric_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_hypergeometric_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,34 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Hypergeometric distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. Since this is a discrete distribution the function will be evaluated at all the integers between the lower quantile and the upper quantile (inclusive of the end points).</setting>
+		<setting id="m">See R reference on Hypergeometric distribution.</setting>
+		<setting id="n">See R reference on Hypergeometric distribution.</setting>
+		<setting id="k">See R reference on Hypergeometric distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Hypergeometric"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_logistic_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_logistic_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_logistic_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,34 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Logistic distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="loc">See R reference on Logistic distribution.</setting>
+		<setting id="scale">See R reference on Logistic distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Logistic"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_lognormal_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_lognormal_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_lognormal_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,34 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Lognormal distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="mean">See R reference on Lognormal distribution.</setting>
+		<setting id="sd">See R reference on Lognormal distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Lognormal"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_negbinomial_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_negbinomial_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_negbinomial_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,35 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Negative Binomial distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. Since this is a discrete distribution the function will be evaluated at all the integers between the lower quantile and the upper quantile (inclusive of the end points).</setting>
+		<setting id="size">See R reference on Negative Binomial distribution.</setting>
+		<setting id="prob">See R reference on Negative Binomial distribution.</setting>
+		<setting id="mu">See R reference on Negative Binomial distribution.</setting>
+		<setting id="param">The type of the parameterization to be used. See R reference on Negative Binomial distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/NegBinomial"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_normal_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_normal_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_normal_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,34 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Normal distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="mean">See R reference on Normal distribution.</setting>
+		<setting id="sd">See R reference on Normal distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Normal"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_poisson_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_poisson_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_poisson_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,32 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Poisson distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. Since this is a discrete distribution the function will be evaluated at all the integers between the lower quantile and the upper quantile (inclusive of the end points).</setting>
+		<setting id="mean">See R reference on Poisson distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Poisson"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_t_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_t_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_t_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,34 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the T distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="df">See R reference on T distribution.</setting>
+		<setting id="ncp">See R reference on T distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/TDist"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_tukey_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_tukey_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_tukey_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,32 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Distribution function plot for the Studentized Range (Tukey) distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">Only the distribution function can be plotted for the Tukey distribution.</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="nmeans">See R reference on Tukey distribution.</setting>
+		<setting id="df">See R reference on Tukey distribution.</setting>
+		<setting id="nranges">See R reference on Tukey distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Tukey"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_uniform_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_uniform_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_uniform_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,34 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Uniform distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="llim">See R reference on Uniform distribution.</setting>
+		<setting id="ulim">See R reference on Uniform distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Uniform"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_weibull_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_weibull_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_weibull_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,34 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Weibull distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="n">Number of observations (points) for constructing the plot (n).</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. So, the function will be evaluated at 'n' equally spaced points between the lower quantile and the upper quantile (inclusive of end points).</setting>
+		<setting id="shape">See R reference on Weibull distribution.</setting>
+		<setting id="scale">See R reference on Weibull distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Weibull"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</document>

Added: trunk/rkward/rkward/plugins/distributions/plot_wilcoxon_distribution.rkh
===================================================================
--- trunk/rkward/rkward/plugins/distributions/plot_wilcoxon_distribution.rkh	                        (rev 0)
+++ trunk/rkward/rkward/plugins/distributions/plot_wilcoxon_distribution.rkh	2007-02-05 11:01:27 UTC (rev 1317)
@@ -0,0 +1,33 @@
+<!DOCTYPE rkhelp>
+<document>
+	<summary>
+Density and distribution function plots for the Wilcoxon distribution.
+	</summary>
+
+	<usage>
+Choose appropriate values for the various parameters of the distribution and select the type of function. The "Submit" button will export the plot to the "Output" window. To dynamically visualise the plot check the "Preview" box. The default values should produce a plot of the "standard" distribution.
+	</usage>
+
+	<settings>
+		<setting id="function">
+			<li> Density Function, or </li>
+			<li> Distribution Function </li>
+		</setting>
+		<setting id="min">Smallest value at which the function is to be plotted.</setting>
+		<setting id="max">Largest value at which the function is to be plotted. Since this is a discrete distribution the function will be evaluated at all the integers between the lower quantile and the upper quantile (inclusive of the end points).</setting>
+		<setting id="nm">See R reference on Wilcoxon distribution.</setting>
+		<setting id="nn">See R reference on Wilcoxon distribution.</setting>
+		<setting id="log">See the description given on Plot Beta distribution help page.</setting>
+		<setting id="lower">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="preview">See the description given on Plot Beta  distribution help page.</setting>
+		<setting id="plotoptions">Various plotting parameter settings for the plot. See the help page of "Plot Options" for more details.</setting>
+	</settings>
+	<related>
+		<ul>
+			<li><link href="rkward://rhelp/Wilcoxon"/></li>
+			<li><link href="rkward://component/plot_beta_distribution"/></li>
+			<li><link href="rkward://component/plot_options"/></li>
+			<li><link href="rkward://rhelp/curve"/></li>
+		</ul>
+	</related>
+</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