ministat

A mini statistics library for Python inspired by the `ministat` command


Keywords
ministat, statistic
License
MIT
Install
pip install ministat==0.0.2

Documentation

Python mini statistics library

Inspired by the ministat command.

Install

pip install ministat

Usage

>>> import ministat

>>> iguana = [50, 200, 150, 400, 750, 400, 150]

>>> chameleon = [150, 400, 720, 500, 930]

>>> ministat.compare_and_print(iguana, chameleon)
No difference proven at 95.0% confidence

>>> ministat.compare_and_print(iguana, chameleon, confidence_level=80)
Difference at 80.0% confidence
-240 +/- 212.215
-80% +/- 70.7384%
(Student's t, pooled s = 154.676)

Tests (with nose)

nosetests