Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

normal distribution in python

from scipy.stats import norm

# What percentage of man are shorter than 154
mean = 161
standard_deviation = 7

from scipy.stats import norm
norm.cdf(154, mean, standard_deviation)
 
PREVIOUS NEXT
Tagged: #normal #distribution #python
ADD COMMENT
Topic
Name
7+1 =