Last active
October 26, 2017 05:49
-
-
Save roblogic/ddc5377d9db48f0f9ca2635a5d900c2c to your computer and use it in GitHub Desktop.
Print basic statistics for numeric data input to stdin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# thanks to http://unix.stackexchange.com/a/13779/62529 | |
sort -n | awk ' | |
BEGIN { | |
c = 0; | |
sum = 0; | |
} | |
$1 ~ /^[0-9]*(\.[0-9]*)?$/ { | |
a[c++] = $1; | |
sum += $1; | |
} | |
END { | |
ave = sum / c; | |
if( (c % 2) == 1 ) { | |
median = a[ int(c/2) ]; | |
} else { | |
median = ( a[c/2] + a[c/2-1] ) / 2; | |
} | |
OFS="\t"; | |
print sum, c, ave, median, a[0], a[c-1]; | |
} | |
' | |
echo -e "sum\tn\tmean\tmedian\tmin\tmax" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example
Analysing results from Jmeter's "Simple Data Writer"...