Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

mean deviation python

import statistics 
import numpy as np
 
data = np.array([7,5,4,9,12,45])
 
print("Standard Deviation of the sample is % s "% (statistics.stdev(data)))
print("Mean of the sample is % s " % (statistics.mean(data)))
Source by www.askpython.com #
 
PREVIOUS NEXT
Tagged: #deviation #python
ADD COMMENT
Topic
Name
9+3 =