本文简要介绍 python 语言中 numpy.random.Generator.geometric
的用法。
用法:
random.Generator.geometric(p, size=None)
从几何分布中抽取样本。
伯努利试验是具有两种结果之一的实验:成功或失败(这种实验的一个例子是掷硬币)。几何分布模拟为取得成功而必须运行的试验次数。因此,正整数
k = 1, 2, ...
支持它。几何分布的概率质量函数为
其中 p 是单个试验的成功概率。
- p: 浮点数或类似数组的浮点数
单个试验成功的概率。
- size: int 或整数元组,可选
输出形状。例如,如果给定的形状是
(m, n, k)
,则绘制m * n * k
样本。如果 size 为None
(默认),如果p
是标量,则返回单个值。否则,将抽取np.array(p).size
样本。
- out: ndarray 或标量
从参数化几何分布中抽取样本。
参数:
返回:
例子:
从几何分布中抽取一万个值,个体成功的概率等于 0.35:
>>> z = np.random.default_rng().geometric(p=0.35, size=10000)
一次运行后有多少次试验成功?
>>> (z == 1).sum() / 10000. 0.34889999999999999 # random
相关用法
- Python numpy Generator.gamma用法及代码示例
- Python numpy Generator.gumbel用法及代码示例
- Python numpy Generator.multivariate_normal用法及代码示例
- Python numpy Generator.standard_normal用法及代码示例
- Python numpy Generator.bytes用法及代码示例
- Python numpy Generator.shuffle用法及代码示例
- Python numpy Generator.choice用法及代码示例
- Python numpy Generator.random用法及代码示例
- Python numpy Generator.logseries用法及代码示例
- Python numpy Generator.uniform用法及代码示例
- Python numpy Generator.standard_t用法及代码示例
- Python numpy Generator.standard_cauchy用法及代码示例
- Python numpy Generator.normal用法及代码示例
- Python numpy Generator.poisson用法及代码示例
- Python numpy Generator.power用法及代码示例
- Python numpy Generator.laplace用法及代码示例
- Python numpy Generator.vonmises用法及代码示例
- Python numpy Generator.noncentral_f用法及代码示例
- Python numpy Generator.multivariate_hypergeometric用法及代码示例
- Python numpy Generator.weibull用法及代码示例
- Python numpy Generator.pareto用法及代码示例
- Python numpy Generator.noncentral_chisquare用法及代码示例
- Python numpy Generator.negative_binomial用法及代码示例
- Python numpy Generator.binomial用法及代码示例
- Python numpy Generator.standard_exponential用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.random.Generator.geometric。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。