Python statistics module provides the functions to mathematical statistics of numeric data. There are some popular statistical functions defined in this module.
mean() function
The mean() function is used to calculate the arithmetic mean of the numbers in the list.
median() function
The median() function is used to return the middle value of the numeric data in the list.
mode() function
The mode() function returns the most common data that occurs in the list.
stdev() function
The stdev() function is used to calculate the standard deviation on a given sample which is available in the form of the list.
median_low()
The median_low function is used to return the low median of numeric data in the list.
median_high()
The median_high function is used to return the high median of numeric data in the list.
0 Comments