Python绘制正态分布(高斯分布)
程序员文章站
2024-03-25 21:31:58
...
参考资料
https://baike.baidu.com/item/%E6%AD%A3%E6%80%81%E5%88%86%E5%B8%83/829892?fr=aladdin
一维正态分布
若随机变量 服从一个位置参数为 、尺度参数为 的概率分布,且其概率密度函数为
则这个随机变量就称为正态随机变量,正态随机变量服从的分布就称为正态分布,记作 ,读作 服从 ,或 服从正态分布。
标准正态分布
当 时,正态分布就成为标准正态分布
Python 绘制正态分布的代码
import numpy as np
import matplotlib.pyplot as plt
import math
def normal_distribution(x, mu, sigma):
return np.exp( -1 * ( (x-mu) ** 2) / ( 2 * (sigma ** 2)) ) / (math.sqrt( 2 * np.pi ) * sigma)
mu, sigma = 0, 1
x = np.linspace( mu - 6 * sigma, mu + 6 * sigma, 100)
y = normal_distribution(x, mu, sigma)
plt.plot(x, y, 'r', label='mu = 0,sigma = 1')
plt.legend()
plt.grid()
plt.show()
显示效果
下一篇: 统计数据库中某个值的数量