Skip to content

Latest commit

History

35 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Stats Build Status

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

usev6;
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

Resources

Stars

12 stars

Watchers

4 watching

Forks

Releases

Packages

Contributors

Languages