0


Python绘制概率曲线一

Python绘制概率曲线一

解释

这里是使用matplotlib来绘制正态分布的曲线。

代码实现

import numpy as np
import matplotlib.pyplot as plt

deftest1(n, m=500):
    out =[]
    result = np.random.normal(1,5, n * m)print(result)for i inrange(m):
        average0 =0for j inrange(n):
            average0 += result[n * i  + j]if j == n -1:
                out.append(average0 / n)
                average0 =0print(out)
    
    plt.hist(out,bins=25) 
    plt.title("test (1)")
    plt.xlabel("x")
    plt.ylabel("rate")    
    plt.show()

 
test1(5)
标签: 算法 leetcode python

本文转载自: https://blog.csdn.net/m0_54218263/article/details/123676513
版权归原作者 hhh江月 所有, 如有侵权,请联系我们删除。

“Python绘制概率曲线一”的评论:

还没有评论