Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

normal distribution in python

# What height are 90% of men are shorter than?
mean = 161
standard_deviation = 7

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