Computer Science, asked by chesin999, 1 month ago

What is the use of statistics module?Name and define any two functions in it​

Answers

Answered by shivamsharma1256
1

Answer:

The statistics module provides functions to mathematical statistics of numeric data. The following popular statistical functions are defined in this module.

Mean

The mean() method calculates the arithmetic mean of the numbers in a list.

Median

The median() method returns the middle value of numeric data in a list.

Mode

The mode() method returns the most common data point in the list.

Standard Deviation

The stdev() method calculates the standard deviation on a given sample in the form of a list.

Similar questions