Metadata-Version: 2.1
Name: simplestat
Version: 0.8
Summary: Very minimal statistics module. Useful when you dont have the disk space for numpy
Home-page: https://github.com/psorus/simplestat/
Author: Simon Klüttermann
Author-email: Simon.Kluettermann@gmx.de
License: UNKNOWN
Download-URL: https://github.com/psorus/simplestat/archive/0.8.tar.gz
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.7
Description-Content-Type: text/markdown

# simplestat
Very minimal statistics module. Useful when you dont have the disk space for numpy

Only contains the following functions (and only for 1d arrays):
mean(q)
std(q,m=None)#can set m=mean(q) to save computation time
min(q)
argmin(q)
max(q)
argmax(q)
statinf(q)
  return information about the object as dictionary
sstr(q)
  statinf+json.dumps(indent=2)
sprint(q)
  print(sstr())

