I have some data that looks like this:
add 0.17411 0.00018 0.17430 0
add 0.03959 0.00014 0.03974 1
add 0.00923 0.00013 0.00935 2
add 0.01346 0.00011 0.01357 3
add 1.00567 0.00015 1.00582 4
How can I get compute some statistics on these numbers? I would like to get things like min, max, avg, stddeviation for each of the columns.
Ideally it would be something like awk-like, and included in standard linux distributions.
prog max(column1),avg(column1) < myfile