Python numpy.random.geometric()

Python numpy.random.geometric()

numpy.random.geometric()方法的帮助下,我们可以获得几何分布的随机样本,并通过使用该方法返回numpy数组的随机样本。

Python中的numpy.random.geometric()

几何分布

语法 : numpy.random.geometric(p, size=None)

返回 :返回numpy数组的随机样本。

例子 #1 :

在这个例子中,我们可以看到,通过使用numpy.random.geometric()方法,我们能够获得几何分布的随机样本,并通过使用该方法将随机样本作为numpy数组返回。

# import numpy and geometric
import numpy as np
import matplotlib.pyplot as plt
  
# Using geometric() method
gfg = np.random.geometric(0.65, 1000)
  
count, bins, ignored = plt.hist(gfg, 40, density = True)
plt.show()

输出 :

Python numpy.random.geometric()

例子 #2 :

# import numpy and geometric
import numpy as np
import matplotlib.pyplot as plt
  
# Using geometric() method
gfg = np.random.geometric(0.85, 1000)
  
count, bins, ignored = plt.hist(gfg, 10, density = True)
plt.show()

输出 :

Python numpy.random.geometric()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程