Win has asked for the wisdom of the Perl Monks concerning the following question:
my $lfit = Statistics::LineFit->new(); $lfit->setData($x_ref, $y_ref); my ($intercept, $slope) = $lfit->coefficients(); my $rSquared = $lfit->rSquared(); my $pValue = $lfit->pValue(); # I need a line like this
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Calculating p-values using Statistics::LineFit
by apl (Monsignor) on May 01, 2008 at 16:24 UTC | |
|
Re: Calculating p-values using Statistics::LineFit
by educated_foo (Vicar) on May 01, 2008 at 16:36 UTC | |
|
Re: Calculating p-values using Statistics::LineFit
by KurtSchwind (Chaplain) on May 01, 2008 at 15:48 UTC |