logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Statistics Tool - Generate Descriptive Stats | Online Free DevTools by Hexmos

Generate descriptive statistics with Statistics Tool (st). Calculate mean, sum, standard deviation, and more from data. Free online tool, no registration required.

st-2

Print basic descriptive statistics from input numbers. More information: https://github.com/nferraz/st.

  • Print count, min, max, sum, mean, and standard deviation for numbers in a file:

st {{path/to/file}}

  • Print statistics from standard input:

cat {{path/to/file}} | st

  • Print only the sum of the numbers:

st {{[-s|--sum]}} {{path/to/file}}

  • Print only the mean of the numbers:

st {{[-m|--mean]}} {{path/to/file}}

  • Print only the standard deviation:

st {{[-s|--sd]}} {{path/to/file}}

  • Transpose output (keys in one column, values in another):

st {{[-t|--transpose]}} {{path/to/file}}

See Also