Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 1.04 KB

README.rst

File metadata and controls

61 lines (42 loc) · 1.04 KB

Handy Stats

Small Python library to quickly run statistic aggregations.

Simple as:

pip install https://github.com/cloudmercato/handystats/archive/refs/heads/main.zip

Make an average:

>>> import handystats
>>> data = range(1, 1001)
>>> handystats.mean(data)
500.5

Here's the available operations:

mean
stdev
min
max
median
harmonic_mean
geo_mean
perc1
perc5
perc95
perc99
variance
pvariance

handystats is used in the following projects:

This project is created with ❤️ for free by Cloud Mercato under BSD License. Feel free to contribute by submitting a pull request or an issue.