Python绘制概率曲线一
Posted hhh江月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python绘制概率曲线一相关的知识,希望对你有一定的参考价值。
Python绘制概率曲线一
解释
这里是使用matplotlib来绘制正态分布的曲线。
代码实现
import numpy as np
import matplotlib.pyplot as plt
def test1(n, m=500):
out = []
result = np.random.normal(1, 5, n * m)
print(result)
for i in range(m):
average0 = 0
for j in range(n):
average0 += result[n * i + j]
if j == n - 1:
out.append(average0 / n)
average0 = 0
print(out)
plt.hist(out,bins=25)
plt.title("test (1)")
plt.xlabel("x")
plt.ylabel("rate")
plt.show()
test1(5)
以上是关于Python绘制概率曲线一的主要内容,如果未能解决你的问题,请参考以下文章