本文简要介绍 python 语言中 numpy.random.RandomState.wald
的用法。
用法:
random.RandomState.wald(mean, scale, size=None)
从 Wald 或逆高斯分布中抽取样本。
随着尺度接近无穷大,分布变得更像高斯分布。一些参考文献声称 Wald 是一个逆高斯,平均值等于 1,但这绝不是普遍的。
首先研究了与布朗运动相关的逆高斯分布。 1956 年 M.C.K. Tweedie 之所以使用逆高斯这个名称,是因为在单位距离内覆盖的时间与单位时间内覆盖的距离之间存在反比关系。
注意
新代码应改为使用
default_rng()
实例的wald
方法;请参阅快速入门。- mean: 浮点数或类似数组的浮点数
分布均值,必须 > 0。
- scale: 浮点数或类似数组的浮点数
比例参数,必须 > 0。
- size: int 或整数元组,可选
输出形状。例如,如果给定的形状是
(m, n, k)
,则绘制m * n * k
样本。如果 size 为None
(默认),如果mean
和scale
都是标量,则返回单个值。否则,将抽取np.broadcast(mean, scale).size
样本。
- out: ndarray 或标量
从参数化 Wald 分布中抽取样本。
参数:
返回:
注意:
Wald 分布的概率密度函数为
如上所述,逆高斯分布首先源于对布朗运动建模的尝试。它也是 Weibull 在可靠性建模以及股票收益和利率过程建模方面的竞争对手。
参考:
Brighton Webs Ltd., Wald Distribution,https://web.archive.org/web/20090423014010/http://www.brighton-webs.co.uk:80/distributions/wald.asp
Chhikara, Raj S. 和 Folks, J. Leroy,“逆高斯分布:理论:方法和应用”,CRC 出版社,1988 年。
维基百科,“Inverse Gaussian distribution”https://en.wikipedia.org/wiki/Inverse_Gaussian_distribution
1:
2:
3:
例子:
从分布中绘制值并绘制直方图:
>>> import matplotlib.pyplot as plt >>> h = plt.hist(np.random.wald(3, 2, 100000), bins=200, density=True) >>> plt.show()
相关用法
- Python numpy RandomState.weibull用法及代码示例
- Python numpy RandomState.standard_exponential用法及代码示例
- Python numpy RandomState.bytes用法及代码示例
- Python numpy RandomState.uniform用法及代码示例
- Python numpy RandomState.standard_gamma用法及代码示例
- Python numpy RandomState.seed用法及代码示例
- Python numpy RandomState.power用法及代码示例
- Python numpy RandomState.standard_normal用法及代码示例
- Python numpy RandomState.geometric用法及代码示例
- Python numpy RandomState.random_sample用法及代码示例
- Python numpy RandomState.gumbel用法及代码示例
- Python numpy RandomState.logseries用法及代码示例
- Python numpy RandomState.noncentral_chisquare用法及代码示例
- Python numpy RandomState.chisquare用法及代码示例
- Python numpy RandomState.poisson用法及代码示例
- Python numpy RandomState.randn用法及代码示例
- Python numpy RandomState.vonmises用法及代码示例
- Python numpy RandomState.gamma用法及代码示例
- Python numpy RandomState.zipf用法及代码示例
- Python numpy RandomState.triangular用法及代码示例
- Python numpy RandomState.f用法及代码示例
- Python numpy RandomState.shuffle用法及代码示例
- Python numpy RandomState.rayleigh用法及代码示例
- Python numpy RandomState.randint用法及代码示例
- Python numpy RandomState.permutation用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.random.RandomState.wald。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。