DOKK / manpages / debian 12 / libapp-st-perl / App::St.3.en
App::St(3) User Contributed Perl Documentation App::St(3)

App::St - Simple Statistics

App::St provides the core functionality of the st-console application.

  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();

Nelson Ferraz <nferraz@gmail.com>

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 (c) 2013 Nelson Ferraz.

This program is free software; you can redistribute it and/or modify it under the MIT License (see LICENSE).

2023-01-31 perl v5.36.0