当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Numpy np.negative_binomial()用法及代码示例


借助np.negative_binomial()方法,我们可以获得负二项式序列的数组np.negative_binomial()方法。

用法: np.negative_binomial(n, p, size)
返回:Return an array of negative binomial series.

范例1:
在这个例子中,我们可以通过使用np.negative_binomial()方法,我们可以使用此方法获得负二项式序列的数组。


# import numpy 
import numpy as np 
  
# using np.negative_binomial() method 
gfg = np.random.negative_binomial(3, 0.33, 10) 
  
print(gfg)

输出:

[ 8 12 23 1 2 7 5 3 1 5]

范例2:

# import numpy 
import numpy as np 
  
# using np.negative_binomial() method 
gfg = np.random.negative_binomial(5, 0.1234, 50) 
  
print(gfg)

输出:

[15 26 60 19 15 18 15 55 46 36 28 50 13 47 40 56 24 80 47 19 36 62 45 57
37 32 15 28 20 65 40 34 34 35 28 38 43 50 20 71 33 40 31 50 25 29 46 38
32 86]



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Numpy np.negative_binomial() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。