Python Numpy np.negative_binomial()方法

Python Numpy np.negative_binomial()方法

在np.negative_binomial()方法的帮助下,我们可以通过使用np.negative_binomial()方法得到负二项式数组。

语法: np.negative_binomial(n, p, size)
返回:返回一个负二项式数列。

例子#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]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程