本文简要介绍 python 语言中 numpy.random.RandomState.standard_gamma
的用法。
用法:
random.RandomState.standard_gamma(shape, size=None)
从标准 Gamma 分布中抽取样本。
样本是从具有指定参数、形状(有时指定为“k”)和比例=1 的 Gamma 分布中提取的。
注意
新代码应改为使用
default_rng()
实例的standard_gamma
方法;请参阅快速入门。- shape: 浮点数或类似数组的浮点数
参数,必须为非负数。
- size: int 或整数元组,可选
输出形状。例如,如果给定的形状是
(m, n, k)
,则绘制m * n * k
样本。如果 size 为None
(默认),如果shape
是标量,则返回单个值。否则,将抽取np.array(shape).size
样本。
- out: ndarray 或标量
从参数化的标准伽马分布中抽取样本。
参数:
返回:
注意:
Gamma 分布的概率密度为
其中 是形状, 是比例, 是 Gamma 函数。
Gamma 分布通常用于模拟电子元件的故障时间,并且自然出现在与泊松分布事件之间的等待时间相关的过程中。
参考:
Weisstein, Eric W. “伽马分布”。来自MathWorld-A Wolfram Web 资源。http://mathworld.wolfram.com/GammaDistribution.html
维基百科,“Gamma distribution”,https://en.wikipedia.org/wiki/Gamma_distribution
1:
2:
例子:
从分布中抽取样本:
>>> shape, scale = 2., 1. # mean and width >>> s = np.random.standard_gamma(shape, 1000000)
显示样本的直方图以及概率密度函数:
>>> import matplotlib.pyplot as plt >>> import scipy.special as sps >>> count, bins, ignored = plt.hist(s, 50, density=True) >>> y = bins**(shape-1) * ((np.exp(-bins/scale))/ ... (sps.gamma(shape) * scale**shape)) >>> plt.plot(bins, y, linewidth=2, color='r') >>> plt.show()
相关用法
- Python numpy RandomState.standard_exponential用法及代码示例
- Python numpy RandomState.standard_normal用法及代码示例
- Python numpy RandomState.standard_t用法及代码示例
- Python numpy RandomState.standard_cauchy用法及代码示例
- Python numpy RandomState.seed用法及代码示例
- Python numpy RandomState.shuffle用法及代码示例
- Python numpy RandomState.bytes用法及代码示例
- Python numpy RandomState.uniform用法及代码示例
- Python numpy RandomState.power用法及代码示例
- 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.wald用法及代码示例
- 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.rayleigh用法及代码示例
- Python numpy RandomState.randint用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.random.RandomState.standard_gamma。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。