You can use another structure to store the sorted results, in this case a hash of arrays of arrays:
my %sorted;
for my $key (keys %bigrams) {
my $hash = $bigrams{$key};
for my $secKey (sort { $hash->{$a}<=>$hash->{$b} } keys %$hash) {
my $value = $hash->{$secKey} / $freqs{$key};
push( @{ $sorted{$key} }, [$secKey,$value] );
}
}
while ( my ( $key, $aoa ) = each %sorted ) {
print "$key\n";
for my $ary ( @$aoa ) {
print "\t$ary->[0] => $ary->[1]\n";
}
}
Result:
like
VBP => 0.0882352941176471
VB => 0.0882352941176471
IN => 0.823529411764706
kind
JJ => 0.2
NN => 0.8
capped
VBN => 0.333333333333333
JJ => 0.666666666666667
successful
JJ => 1
distribution
NN => 1
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.