NAME

Statistics::Lmoments

SYNOPSIS

use Statistics::Lmoments;

my @x = (..data here..);

# data needs to be sorted from smallest to largest @x = sort {$a<=>$b} @x;

# calculate the "unbiased" first 5 L-moments $xmom = &Statistics::Lmoments::sam('lmu',\@x, 5); mtest(@{$xmom}); }

foreach (@Statistics::Lmoments::distributions) { next if /^KAP/; my $para = &Statistics::Lmoments::pel($_,$xmom); # @{$para} is the estimated parameter vector for the specified distribution mtest($_); mtest(@{$para}); my $x = 100; my $F = &Statistics::Lmoments::cdf($_,$x,$para); # $F is the value of the cdf at 100 for this distribution }

DESCRIPTION

For more information please see lmoments.ps in this distribution.

METHODS

BUGS

AUTHOR

Ari Jolma, ajolma@water.hut.fi

SEE ALSO

perl(1).