App::St - Simple Statistics
Contents
Contributing
Send comments, suggestions and bug reports to:
https://github.com/nferraz/st/issues
Or fork the code on github:
https://github.com/nferraz/st
Copyright
Copyright (c) 2013 Nelson Ferraz.
This program is free software; you can redistribute it and/or modify it under the MIT License (see
LICENSE).
perl v5.40.0 2024-09-16 App::St(3)
Description
App::St provides the core functionality of the st-console application.
Methods
new(%options)validate($num)process($num)Nsummeanstddevstderrpercentile=<0..100>quartile=<0..4>minq1medianq3max
Name
App::St - Simple Statistics
Synopsis
use App::St;
my $st = App::St->new();
while (<>) {
chomp;
next unless $st->validate($_);
$st->process($_);
}
print $st->mean();
print $st->stddev();
print $st->sterr();
