當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。