Metadata-Version: 2.1
Name: ministat
Version: 0.0.2
Summary: A mini statistics library for Python inspired by the `ministat` command
Home-page: https://github.com/lebinh/ministat
Author: Binh Le
Author-email: lebinh.it@gmail.com
License: MIT
Keywords: ministat statistic
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Provides-Extra: dev
Provides-Extra: test

Python statistics library inspired by the `ministat` command
=============================================================

::

    >>> 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)


