Metadata-Version: 1.0
Name: stats
Version: 0.1.2a
Summary: Calculator-style statistical functions
Home-page: http://code.google.com/p/pycalcstats/
Author: Steven D'Aprano
Author-email: steve+python@pearwood.info
License: MIT
Description: Statistical functions
        ---------------------
        
        stats is a pure-Python module providing basic statistics functions similar
        to those found on scientific calculators. It has over 40 statistics functions,
        including:
        
        Univariate statistics:
        * arithmetic, harmonic, geometric and quadratic means
        * median, mode, midrange, trimean
        * mean of angular quantities
        * running and weighted averages
        * quartiles, hinges and quantiles
        * variance and standard deviation (sample and population)
        * average deviation and median average deviation (MAD)
        * skew and kurtosis
        * standard error of the mean
        
        Multivariate statistics:
        * Pearson's correlation coefficient
        * Q-correlation coefficient
        * covariance (sample and population)
        * linear regression
        * sums Sxx, Syy and Sxy
        
        and others.
        
        
        Requires Python 3.1 or better.
        
Keywords: statistics,mathematics,calculator
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.1
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: License :: OSI Approved :: MIT License
