summaryrefslogtreecommitdiff
path: root/math/p5-Statistics-Descriptive
AgeCommit message (Collapse)AuthorFilesLines
2011-08-16Update to 3.0202:wiz3-8/+7
3.0202 July 23, 2011 - Moved tag-release.pl to scripts/tag-release.pl (though we now use Mercurial instead of Subversion.) - Add t/mode.t to test the ->mode() method. - Documented ->mode() better. - Optimized ->mode(). 3.0201 October 14, 2010 - Add some documentation clarifying the 0th percentile return, as it returns undef() for representing -inf: - Fix https://rt.cpan.org/Ticket/Display.html?id=62055 - Thanks to Dave Breimann for reporting it. - Add the tag-release.pl to tag a release using Subversion.
2011-08-14Revision bump after updating perl5 to 5.14.1.obache1-1/+2
2010-09-12Update to 3.0200:wiz2-7/+6
3.0200 June 18, 2010 - Added skewness and kurtosis - https://rt.cpan.org/Ticket/Display.html?id=58187 - Thanks to Shawn Laffan. 3.0102 June 15, 2010 - Add the $VERSION variable to Statistics::Descriptive::Sparse and Statistics::Descriptive::Full. This was done to silence the CPAN indexer. 3.0101 June 15, 2010 - Moved the trimmed_mean caching test (that used the Benchmark.pm module) to rejects/descr.t , because it kept failing.
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-1/+2
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
2009-08-18Updating package for p5 module Statistics::Descriptive from 2.6 to 3.0100sno2-6/+8
pkgsrc changes: - Adding license according to META.yml (perl license) - Setting module type to Module::Build Upstream changes: 3.0100 July 20, 2009 - Added the quantile method - thanks to Djibril Ousmanou (DJIBEL). - https://rt.cpan.org/Ticket/Display.html?id=47948 3.0000 May 29, 2009 - Added tests (for ->count, ->sum, ->sumsq, ->min, ->max) - Localized the scope of $stat and other variables in t/descr.t - Got rid of AUTOLOAD in favour of individual accessors. - Converted many direct member accesses to the accessors. - Added ->frequency_distribution_ref() which deprecates frequency_distribution(). - Some refactoring of the lib/Statistics/Descriptive.pm module (without breaking the documented API). 2.9 May 13, 2009 - Fixed bug https://rt.cpan.org/Public/Bug/Display.html?id=46026 : - standard_deviation failing due to a variance that got evaluated to 0 due to rounding errors. - Kwalitee : added a LICENSE section to the POD. - Kwalitee (CPANTS) : added an examples/ directory with a script. 2.8 May 09, 2009 - Enabled "./Build runtest" and "./Build distruntest" (using Test::Run) in the distribution. - Fixed incomplete/broken tests in t/descr.t. 2.7 May 03, 2009 - Converted the distribution to Build.PL and re-organized it to put everything under its proper place. Started maintaining it in: - http://svn.berlios.de/svnroot/repos/web-cpan/Statistics-Descriptive/ - Converted t/descr.t to use "use strict;" and "use warnings;". - Converted t/descr.t to use Test::More. - Cleaned up the "use" statement of lib/Statistics/Descriptive.pm. - Added more explicit dependencies (core, though) to Build.PL. - Fixed RT bug #34999: freq distribution generated too many bins. - https://rt.cpan.org/Ticket/Display.html?id=34999 - Added some keywords and resources to the META.yml, using Build.PL's meta_merge. - Fixed https://rt.cpan.org/Ticket/Display.html?id=32183 - more authoritative (and non-broken) link to the RFC. - Applied the patch in https://rt.cpan.org/Ticket/Display.html?id=9160 - {{#9160: Variance and Standard Deviation use costly pseudo-variance, instead of computing real variance}}.
2009-04-06Statistics::Descriptive is a perl module of basic descriptive statisticalchuck3-0/+24
functions (mean, median, mode, sum, variance, standard_deviation, etc.)