grtodd / Stats

Perl6 statistics modules

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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;

About

Perl6 statistics modules

License:Artistic License 2.0


Languages

Language:Perl 6 100.0%