📜  Python中的 numpy.random.power()

📅  最后修改于: 2022-05-13 01:54:18.960000             🧑  作者: Mango

Python中的 numpy.random.power()

借助numpy.random.power()方法,我们可以从功率分布中获取随机样本,并使用该方法返回随机样本。

电力调配

示例 #1:

在这个例子中,我们可以看到通过使用numpy.random.power()方法,我们能够从功率分布中获取随机样本并返回随机样本。

Python3
# import numpy
import numpy as np
import matplotlib.pyplot as plt
  
# Using power() method
gfg = np.random.power(1.75, 1000)
  
plt.figure()
plt.hist(gfg, bins = 50, density = True)
plt.show()


Python3
# import numpy
import numpy as np
import matplotlib.pyplot as plt
  
# Using power() method
gfg = np.random.power(6.75, 500)
  
plt.figure()
plt.hist(gfg, bins = 50, density = True)
plt.show()


输出 :

示例 #2:

Python3

# import numpy
import numpy as np
import matplotlib.pyplot as plt
  
# Using power() method
gfg = np.random.power(6.75, 500)
  
plt.figure()
plt.hist(gfg, bins = 50, density = True)
plt.show()

输出 :