You are viewing a single comment's thread. Return to all comments →
from math import exp, factorial, pi, erf
def CDF(x, mu, std): return 0.5*(1+erf((x-mu)/(std*((2**0.5)))))
Seems like cookies are disabled on this browser, please enable them to open this website
Normal Distribution #3
You are viewing a single comment's thread. Return to all comments →
from math import exp, factorial, pi, erf
Cumulative Probability
Probility that in a normal distribution the value is less than x.
def CDF(x, mu, std): return 0.5*(1+erf((x-mu)/(std*((2**0.5)))))