Python|Python绘制概率曲线一

Python绘制概率曲线一 解释
【Python|Python绘制概率曲线一】这里是使用matplotlib来绘制正态分布的曲线。
代码实现

import numpy as np import matplotlib.pyplot as pltdef 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)

    推荐阅读