Python绘制概率曲线二
Posted hhh江月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python绘制概率曲线二相关的知识,希望对你有一定的参考价值。
Python绘制概率曲线二
详细解释
这里使用了matplotlib.pyplot来实现指数分布的绘制,具体的代码实现参见下面所示:
代码实现
import numpy as np
import matplotlib.pyplot as plt
def test2(n, m=500):
out0 = []
result0 = np.random.exponential(scale=1, size=n * m)
# print(result0)
for i in range(m):
average000 = 0
for j in range(n):
average000 += result0[n * i + j]
if j == n - 1:
out0.append(average000 / n)
average000 = 0
# print(out0)
plt.hist(out0,bins=25)
plt.show()
test2(5)
以上是关于Python绘制概率曲线二的主要内容,如果未能解决你的问题,请参考以下文章