Learn Before
Concept
Statistics Module
To use this module, you must import statistics at the top of your code. This module is primarily used to do calculations regarding statistics of numerical data.
Here are example functions within this module,
- statistics.mean() returns the mean of the data
- statistics.median() returns the median of the data
- statistics.mode() returns the mode of the data
- statistics.pstdev() returns standard deviation from entire population
- statistics.stdev() returns standard deviation from sample of data
- statistics.pvariance() returns variance from entire population
- statistics.variance() returns variance from sample of data
0
1
Updated 2021-08-09
Tags
Python Programming Language
Data Science