An open API service indexing awesome lists of open source software.

https://github.com/bcbcarl/python-statistics

A mathematical statistics library for Python
https://github.com/bcbcarl/python-statistics

Last synced: about 1 year ago
JSON representation

A mathematical statistics library for Python

Awesome Lists containing this project

README

          

# python-statistics

`python-statistics` provides some functions introduced in Python 3.4.

## Averages and measures of central location
| Function | Description |
|----------|--------------------------------------------|
| mean() | Arithmetic mean ("average") of data. |
| median() | Median (middle value) of data. |
| mode() | Mode (most common value) of discrete data. |

## Measures of spread

| Function | Description |
|-------------|----------------------------------------|
| pstdev() | Population standard deviation of data. |
| pvariance() | Population variance of data. |
| stdev() | Sample standard deviation of data. |
| variance() | Sample variance of data. |

See [Python 3 documentation][py3-statistics] for more information.

[//]: ---
[py3-statistics]: https://docs.python.org/3/library/statistics.html