Answers for "how to calculate the mean in python"

0

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
Posted by: Guest on May-07-2020
0

mean python

import numpy as np
values=[1,10,100]
print(np.mean(values))
values=[1,10,100,np.nan]
print(np.nanmean(values))
Posted by: Guest on March-21-2020
0

calculate mean on python

def calculate_mean(n):
    s = sum(n)
    N = len(n)
    
    mean = s / N
    
    return mean
Posted by: Guest on December-28-2020

Code answers related to "how to calculate the mean in python"

Python Answers by Framework

Browse Popular Code Answers by Language