https://github.com/artyom/stddev
Command stddev reads float64 values on its stdin and outputs number of samples, population standard deviation and mean
https://github.com/artyom/stddev
Last synced: about 2 months ago
JSON representation
Command stddev reads float64 values on its stdin and outputs number of samples, population standard deviation and mean
- Host: GitHub
- URL: https://github.com/artyom/stddev
- Owner: artyom
- License: mit
- Created: 2017-08-25T10:24:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T10:13:41.000Z (almost 9 years ago)
- Last Synced: 2025-12-06T07:11:12.418Z (6 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE.txt
Awesome Lists containing this project
README
Command stddev reads float64 values on its stdin and outputs number of
samples, population standard deviation and mean.
Values that cannot be parsed as float64 are silently ignored.
printf "1\n2\n3\n4\n5\njunk\n" | stddev
5 samples: stddev 1.414214 mean 3.000000