Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Print Keys - values of two hashes in a tabulated fromat

by bobf (Monsignor)
on May 25, 2010 at 05:48 UTC ( [id://841478]=note: print w/replies, xml ) Need Help??


in reply to Print Keys - values of two hashes in a tabulated fromat

Unless I am misunderstanding the problem, I don't think you need the inner loop at all. You only need to iterate over the list of keys once.

If that doesn't produce the desired result, please clarify the problem.

Update: Here is a modified version of your code (which may be more clear than my reply above).

use strict; use warnings; my %hash_1 = ( 0.2 => '12', 0.4 => '13', 0.6 => '14', ); my %hash_2 = ( 0.2 => '19', 0.4 => '18', 0.6 => '20', ); foreach my $key ( sort { $a <=> $b } keys %hash_1 ) { my $diff_obs_perm = $hash_1{$key}-$hash_2{$key}; my $FDR = $hash_2{$key} / $hash_1{$key}; my $currentdeltaprint = join ("\t", $key, $hash_1{$key}, $hash_2{$key}, $diff_obs_perm, $FDR ); print "$currentdeltaprint\n"; }

Replies are listed 'Best First'.
Re^2: Print Keys - values of two hashes in a tabulated fromat
by sesemin (Beadle) on May 25, 2010 at 05:55 UTC
    Thanks, I fixed it according to your recommendation. Then I saw the corrected code.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://841478]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (7)
As of 2024-04-23 15:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found