Python numpy.random.standard_exponential()
在numpy.random.standard_exponential()方法的帮助下,我们可以得到标准指数分布的随机样本并返回随机样本。
语法 : numpy.random.standard_exponential(size=None)
返回 :以numpy数组的形式返回随机样本。
例子 #1 :
在这个例子中,我们可以看到,通过使用numpy.random.standard_exponential()方法,我们能够从标准指数分布中获得随机样本,并返回随机样本。
# import numpy
import numpy as np
import matplotlib.pyplot as plt
# Using standard_exponential() method
gfg = np.random.standard_exponential(5000)
plt.hist(gfg, bins = 50, density = True)
plt.show()
输出 :
例子 #2 :
# import numpy
import numpy as np
import matplotlib.pyplot as plt
# Using standard_exponential() method
gfg = np.random.standard_exponential(10000)
plt.hist(gfg, bins = 100, density = True)
plt.show()
输出 :