Put the data into a single hash structure, and then do the math for your formatting at the very end. Throw in a couple of warnings in case the file processing ends prematurely.
Use
List::Util for quick functions to manipulate a list of values.
use List::Util qw(sum max min);
use strict;
my $keysfile = 'keys.txt';
my $valsfile = 'vals.txt';
open(KEYS, $keysfile) or die "Can't open $keysfile: $!";
open(VALS, $valsfile) or die "Can't open $valsfile: $!";
my %data;
while (!eof(KEYS) && !eof(VALS)) {
chomp(my $key = <KEYS>);
chomp(my $val = <VALS>);
push @{$data{$key}}, $val;
}
warn "Premature end of $keysfile\n" if !eof(VALS);
warn "Premature end of $valsfile\n" if !eof(KEYS);
foreach my $name (sort keys %data) {
my $values = $data{$name};
my $count = @$values;
my $total = sum(@$values);
my $average = $total / $count;
my $max = max(@$values);
my $min = min(@$values);
print "$name => total=$total, average=$average, max=$max, min=$min
+\n";
}
- Miller
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.