Statistics::Descriptive(3pm) | User Contributed Perl Documentation | Statistics::Descriptive(3pm) |
Statistics::Descriptive - Module of basic descriptive statistical functions.
version 3.0801
use Statistics::Descriptive; my $stat = Statistics::Descriptive::Full->new(); $stat->add_data(1,2,3,4); my $mean = $stat->mean(); my $var = $stat->variance(); my $tm = $stat->trimmed_mean(.25); $Statistics::Descriptive::Tolerance = 1e-10;
This module provides basic functions used in descriptive statistics. It has an object oriented design and supports two different types of data storage and calculation objects: sparse and full. With the sparse method, none of the data is stored and only a few statistical measures are available. Using the full method, the entire data set is retained and additional functions are available.
Whenever a division by zero may occur, the denominator is checked to be greater than the value $Statistics::Descriptive::Tolerance, which defaults to 0.0. You may want to change this value to some small positive value such as 1e-24 in order to obtain error messages in case of very small denominators.
Many of the methods (both Sparse and Full) cache values so that subsequent calls with the same arguments are faster.
my $class = ref($stat); undef $stat; $stat = new $class;
except more efficient.
Similar to the Sparse Methods above, any Full Method that is called caches the current result so that it doesn't have to be recalculated. In some cases, several values can be cached at the same time.
Note: Calling add_data with an empty array will delete all of your Full method cached values! Cached values for the sparse methods are not changed
NOTE: The number of samples is only used by the smoothing function and is ignored otherwise. It is not equivalent to repeat count. In order to repeat a certain datum more than one time call add_data() like this:
my $value = 5; my $repeat_count = 10; $stat->add_data( [ ($value) x $repeat_count ] );
A function to detect outliers need to be defined (see "set_outlier_filter"), otherwise the function will return an undef value.
The filtering will act only on the most extreme value of the data set (i.e.: value with the highest absolute standard deviation from the mean).
If there is the need to remove more than one outlier, the filtering need to be re-run for the next most extreme value with the initial outlier removed.
This is not always needed since the test (for example Grubb's test) usually can only detect the most exreme value. If there is more than one extreme case in a set, then the standard deviation will be high enough to make neither case an outlier.
$code_ref is the reference to the subroutine implementing the filtering function.
Returns "undef" for invalid values of $code_ref (i.e.: not defined or not a code reference), 1 otherwise.
my $stat = Statistics::Descriptive::Full->new(); $stat->add_data(1, 2, 3, 4, 5); print $stat->set_outlier_filter(); # => undef
sub outlier_filter { return $_[1] > 1; } my $stat = Statistics::Descriptive::Full->new(); $stat->add_data( 1, 1, 1, 100, 1, ); print $stat->set_outlier_filter( \&outlier_filter ); # => 1 my @filtered_data = $stat->get_data_without_outliers(); # @filtered_data is (1, 1, 1, 1)
In this example the series is really simple and the outlier filter function as well. For more complex series the outlier filter function might be more complex (see Grubbs' test for outliers).
The outlier filter function will receive as first parameter the Statistics::Descriptive::Full object, as second the value of the candidate outlier. Having the object in the function might be useful for complex filters where statistics property are needed (again see Grubbs' test for outlier).
The smoothing method and coefficient need to be defined (see "set_smoother"), otherwise the function will return an undef value.
-2, 7, 7, 4, 18, -5
Then F(-8) = 0, F(-5) = 1/6, F(-5.0001) = 0, F(-4.999) = 1/6, F(7) = 5/6, F(18) = 1, F(239) = 1.
Note that we can recover the different measured values and how many times each occurred from F(x) -- no information regarding the range in values is lost. Summarizing measurements using histograms, on the other hand, in general loses information about the different values observed, so the EDF is preferred.
Using either the EDF or a histogram, however, we do lose information regarding the order in which the values were observed. Whether this loss is potentially significant will depend on the metric being measured.
We will use the term "percentile" to refer to the smallest value of x for which F(x) >= a given percentage. So the 50th percentile of the example above is 4, since F(4) = 3/6 = 50%; the 25th percentile is -2, since F(-5) = 1/6 < 25%, and F(-2) = 2/6 >= 25%; the 100th percentile is 18; and the 0th percentile is -infinity, as is the 15th percentile, which for ease of handling and backward compatibility is returned as undef() by the function.
Care must be taken when using percentiles to summarize a sample, because they can lend an unwarranted appearance of more precision than is really available. Any such summary must include the sample size N, because any percentile difference finer than 1/N is below the resolution of the sample.
(Taken from: RFC2330 - Framework for IP Performance Metrics, Section 11.3. Defining Statistical Distributions. RFC2330 is available from: <http://www.ietf.org/rfc/rfc2330.txt> .)
If the percentile method is called in a list context then it will also return the index of the percentile.
This method use the same algorithm as Excel and R language (quantile type 7).
The generic function quantile produces sample quantiles corresponding to the given probabilities.
$Type is an integer value between 0 to 4 :
0 => zero quartile (Q0) : minimal value 1 => first quartile (Q1) : lower quartile = lowest cut off (25%) of data = 25th percentile 2 => second quartile (Q2) : median = it cuts data set in half = 50th percentile 3 => third quartile (Q3) : upper quartile = highest cut off (25%) of data, or lowest 75% = 75th percentile 4 => fourth quartile (Q4) : maximal value
Example :
my @data = (1..10); my $stat = Statistics::Descriptive::Full->new(); $stat->add_data(@data); print $stat->quantile(0); # => 1 print $stat->quantile(1); # => 3.25 print $stat->quantile(2); # => 5.5 print $stat->quantile(3); # => 7.75 print $stat->quantile(4); # => 10
All calls to trimmed_mean() are cached so that they don't have to be calculated a second time.
$stat->add_data(1,1.5,2,2.5,3,3.5,4); $f = $stat->frequency_distribution_ref(2); for (sort {$a <=> $b} keys %$f) { print "key = $_, count = $f->{$_}\n"; }
prints
key = 2.5, count = 4 key = 4, count = 3
since there are four items less than or equal to 2.5, and 3 items greater than 2.5 and less than 4.
"frequency_distribution_refs(\@bins)" provides the bins that are to be used for the distribution. This allows for non-uniform distributions as well as trimmed or sample distributions to be found. @bins must be monotonic and must contain at least one element. Note that unless the set of bins contains the full range of the data, the total counts returned will be less than the sample size.
Calling "frequency_distribution_ref()" with no arguments returns the last distribution calculated, if such exists.
If case of error or division by zero, the empty list is returned.
The array that is returned can be "coerced" into a hash structure by doing the following:
my %hash = (); @hash{'q', 'm', 'r', 'err'} = $stat->least_squares_fit();
Because calling "least_squares_fit()" with no arguments defaults to using the current range, there is no caching of the results.
I read my email frequently, but since adopting this module I've added 2 children and 1 dog to my family, so please be patient about my response times. When reporting errors, please include the following to help me out:
Current maintainer:
Shlomi Fish, <http://www.shlomifish.org/> , "shlomif@cpan.org"
Previously:
Colin Kuskie
My email address can be found at http://www.perl.com under Who's Who or at: https://metacpan.org/author/COLINK .
Fabio Ponciroli & Adzuna Ltd. team (outliers handling)
RFC2330, Framework for IP Performance Metrics
The Art of Computer Programming, Volume 2, Donald Knuth.
Handbook of Mathematica Functions, Milton Abramowitz and Irene Stegun.
Probability and Statistics for Engineering and the Sciences, Jay Devore.
Copyright (c) 1997,1998 Colin Kuskie. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Copyright (c) 1998 Andrea Spinelli. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Copyright (c) 1994,1995 Jason Kastner. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The following websites have more information about this module, and may be of help to you. As always, in addition to those websites please use your favorite search engine to discover more resources.
A modern, open-source CPAN search engine, useful to view POD in HTML format.
<https://metacpan.org/release/Statistics-Descriptive>
The RT ( Request Tracker ) website is the default bug/issue tracking system for CPAN.
<https://rt.cpan.org/Public/Dist/Display.html?Name=Statistics-Descriptive>
The CPANTS is a website that analyzes the Kwalitee ( code metrics ) of a distribution.
<http://cpants.cpanauthors.org/dist/Statistics-Descriptive>
The CPAN Testers is a network of smoke testers who run automated tests on uploaded CPAN distributions.
<http://www.cpantesters.org/distro/S/Statistics-Descriptive>
The CPAN Testers Matrix is a website that provides a visual overview of the test results for a distribution on various Perls/platforms.
<http://matrix.cpantesters.org/?dist=Statistics-Descriptive>
The CPAN Testers Dependencies is a website that shows a chart of the test results of all dependencies for a distribution.
<http://deps.cpantesters.org/?module=Statistics::Descriptive>
Please report any bugs or feature requests by email to "bug-statistics-descriptive at rt.cpan.org", or through the web interface at <https://rt.cpan.org/Public/Bug/Report.html?Queue=Statistics-Descriptive>. You will be automatically notified of any progress on the request by the system.
The code is open to the world, and available for you to hack on. Please feel free to browse it and play with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull from your repository :)
<https://github.com/shlomif/perl-Statistics-Descriptive>
git clone git://github.com/shlomif/perl-Statistics-Descriptive.git
Shlomi Fish <shlomif@cpan.org>
Please report any bugs or feature requests on the bugtracker website <https://github.com/shlomif/perl-Statistics-Descriptive/issues>
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
This software is copyright (c) 1997 by Jason Kastner, Andrea Spinelli, Colin Kuskie, and others.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2023-08-11 | perl v5.36.0 |