標(biāo)準(zhǔn)正態(tài)分布
def normal_cdf(x,mu=0,sigma=1):
p=math.sqrt(math.pi*2)
return math.exp(-(x-mu)**2/(2*sigma**2))/(p*sigma)
Paste_Image.png
def normal_cdf(x,mu=0,sigma=1):
p=math.sqrt(math.pi*2)
return math.exp(-(x-mu)**2/(2*sigma**2))/(p*sigma)