in reply to Re^4: Working out frequency statistics with perl
in thread Working out frequency statistics with perl
This is equivalent to the following code which might or might not be easier to understand:build_histogram ($bin_stage, map $_->{'stagetime'},@diskxStats );
my @statetime=(); foreach (@diskxStats) { push @statetime, $_->{'stagetime'}; } build_histogram ($bin_stage, @statetime );
|
|---|