Aside from the possibility that there is a bug in the
Statistics::TTest module, my first observation would be that Statistics::TTest leaves behind some leftover junk possibly by using globals within the module. There is a faq for this, read
perldoc -q clear where MJD shows how to clear out all temporary
package variables.
Usually a module's author will typically stick to using an array or hash for storage in the module. MJD's scrubber gets them all, but you may only need something like this at the end of your loop, to undef your temp arrays.
foreach my $dataset (sort keys %datasets) {
my $ttest = new Statistics::TTest;
$ttest->load_data(\@{$datasets{$dataset}[0]},\@{$datasets{$dataset
+}[1]});
print "$dataset - t_prob:\t$ttest->{t_prob}\n\n";
undef @$ttest; # clear out old array data
undef %$ttest; # get old hash data
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.