1、关于正态函数 cdf pdf 随机数
from scipy.stats import norm
# cdf(x < val)
## cdf
print (norm.cdf(val, m, s))
## pdf
print (norm.pdf(val, m, s))
## 随机数
random.rand()
2、分位数
-
当前所在分位数
scipy.stats.percentileofscore
-
计算分为数
np.percentile()
未完待续
from scipy.stats import norm
# cdf(x < val)
## cdf
print (norm.cdf(val, m, s))
## pdf
print (norm.pdf(val, m, s))
## 随机数
random.rand()
当前所在分位数
scipy.stats.percentileofscore
计算分为数
np.percentile()
未完待续