Python数据可视化之高斯分布

Python数据可视化之高斯分布 一维高斯分布模型 高斯分布: html N(μ,δ2)=1δ2π−−√e−(x−μ)22δ2 Python实现 在python中,咱们经过坐标变换来求得任意的高斯分布。python import numpy as np import matplotlib.pyplot as plt x = np.random.randn(400) 其中np.random.ran
相关文章
相关标签/搜索