其他函数-3gpp-23501-g10(中文版)

时间:2024-07-31 07:48:07
【文件属性】:

文件名称:其他函数-3gpp-23501-g10(中文版)

文件大小:28.14MB

文件格式:PDF

更新时间:2024-07-31 07:48:07

python 量化交易

2.3 其他函数 有时需要知道某数值在一个分布中的分位,或者给定了一个分布,求某分位上的数 值。这可以通过 cdf 和 ppf 函数完成: g_dist = stats.gamma(a=2) print "quantiles of 2, 4 and 5:" print g_dist.cdf([2, 4, 5]) print "Values of 25%, 50% and 90%:" print g_dist.pdf([0.25, 0.5, 0.95]) quantiles of 2, 4 and 5: [ 0.59399415 0.90842181 0.95957232] Values of 25%, 50% and 90%: [ 0.1947002 0.30326533 0.36740397] 对于一个给定的分布,可以用 moment 很方便的查看分布的矩信息,例如我们查 看 N(0,1) 的六阶原点矩: stats.norm.moment(6, loc=0, scale=1) 15.000000000895332 describe 函数提供对数据集的统计描述分析,包括数据样本大小,极值,均值, 方差,偏度和峰度: 量化分析师的Python日记【第4天:一大波金融Library来袭之scipy篇】 46


网友评论