vote up 5 vote down star

Using any tools which you would expect to find on a nix system (in fact, if you want, msdos is also fine too), what is the easiest/fastest way to calculate the mean of a set of numbers, assuming you have them one per line in a stream or file?

flag

6 Answers

vote up 10 vote down check

Awk

awk '{total += $1; count++ } END {print total/count}'
link|flag
vote up 2 vote down

In Powershell, it would be

get-content .\meanNumbers.txt | measure-object -average

Of course, that's the verbose syntax. If you typed it using aliases,

gc .\meanNumbers.txt | measure-object -a
link|flag
vote up 5 vote down
awk ' { n += $1 }; END { print n / NR }'

This accumulates the sum in n, then divides by the number of items (NR = Number of Records).

Works for integers or reals.

link|flag
Nice on the NR trick, wasn't sure which awk answer to accept so I copped out and went for the one with the most votes! – Anthony Oct 18 '08 at 22:00
vote up 2 vote down

Using Num-Utils for UNIX:

average 1 2 3 4 5 6 7 8 9
link|flag
Interesting. I installed this on Ubuntu and I had to specify the numbers on stdin, not as arguments. – Glyph Oct 18 '08 at 3:28
vote up 3 vote down
perl -e 'while (<>) { $sum += $_; $count++ } print $sum / $count, "\n"';
link|flag
vote up 0 vote down

Perl.

@a = <STDIN>;

for($i = 0; $i < #@a; $i++)
{
   $sum += $a[i];
}

print $a[i]/#@a;

Caveat Emptor: My syntax may be a little whiffly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.