Answers for "python standard normal cumulative distribution"

0

python standard normal cumulative distribution

>>> from scipy.stats import norm
>>> norm.cdf(1.96)
0.9750021048517795
>>> norm.cdf(-1.96)
0.024997895148220435
Posted by: Guest on April-24-2022

Code answers related to "python standard normal cumulative distribution"

Python Answers by Framework

Browse Popular Code Answers by Language