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
- Host: GitHub
- URL: https://github.com/bcbcarl/python-statistics
- Owner: bcbcarl
- License: mit
- Created: 2015-08-29T22:32:40.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-29T22:54:27.000Z (almost 11 years ago)
- Last Synced: 2025-04-19T06:57:03.820Z (about 1 year ago)
- Language: Python
- Size: 121 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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