Distributions.pm | topic started 2/6/2003; 11:01:59 PM last post 2/6/2003; 11:01:59 PM |
Michael Gage - Distributions.pm 2/6/2003; 11:01:59 PM (reads: 1333, responses: 0) |
NAMEStatistics::Distributions - Perl module for calculating probabilities and critical values of common statistical distributions
SYNOPSISuse Statistics::Distributions; $uprob=uprob(-0.85); $tprob=tprob(3, 6.251); $chisprob=chisqrprob(3, 6.25); $fprob=fprob(3,5, .625); $u=udistr(.05); $t=tdistr(1, .005); $chis=chisqrdistr(2, .05); $f=fdistr(1,3, .01);
DESCRIPTIONThis Perl module calulates percentage points (6 significant digits) of the u (standard normal) distribution, the student's t distribution, the chi-square distribution and the F distribution. It can also calculate the upper probability (6 significant digits) of the u (standard normal), the chi-square, the t and the F distribution. These critical values are needed to perform statistical tests, like the u test, the t test, the chi-squared test, and the F test, and to calculate confidence intervals. If you are interested in more precise algorithms you could look at: StatLib: http://lib.stat.cmu.edu/apstat/ Applied Statistics Algorithms by Griffiths, P. and Hill, I.D., Ellis Horwood: Chichester (1985)
AUTHORMichael Kospach, mike.perl@gmx.at Nice formating, simplification and bug repair by Matthias Trautner Kromann, mtk@id.cbs.dk File path = /ww/webwork/pg/lib/Distributions.pm |