Stats
Perl6 statistics modules. Currently has some basic statistics functions revolving around averages.
Contributing
Feel free to PR anything you want. Please add some tests to t/ for any new classes/features.
You can run the tests by doing:
prove -e 'perl6 -I ./lib' -lrv t/
Examples
use v6;
use Stats;
my @data = (1,2,3,4,5,6,6,3,2,9);
#Get some summary statistics similar to R
summary @data;
#Get the mean/median/mode
mean @data; median @data; mode @data;
#Get the quartiles/standard deviation of the data
iqr @data; sd @data;