compute mean value in python code example
Example 1: how to calculate mean in python
import statistics
a = [1,2,3,4,5]
mean = statistics.mean(a)
#Similar for other values such as variance, standard deviation
Example 2: python mean
# Probably the most convenient set of statistics functions are found
# in the Numpy package
# Basic syntax:
import numpy as np
np.mean(your_list) # Calculate mean
np.median() # Calculate median
np.std() # Calculate standard deviation
np.var() # Calculate variance