gpt4 book ai didi

python - 使用seaborn库从最佳拟合正态分布中获取平均值和标准差

转载 作者:太空宇宙 更新时间:2023-11-03 16:49:33 24 4
gpt4 key购买 nike

我有一组数据,我使用seaborn库绘制直方图,应用核密度估计并对数据拟合正态分布。不过,我想提取最佳拟合正态分布的均值标准差。如何从该库的函数 distplot 中获取这些值作为输出?我的代码:

import seaborn as sns
from scipy.stats import norm
sns.set_style("darkgrid")
sns.set_context("paper", font_scale=1, rc={"lines.linewidth": 1.5, "axes.linewidth": 1.0, "axes.labelsize": 15, "xtick.labelsize": 10, "ytick.labelsize": 10, "font.family":'serif','font.serif':'Ubuntu'})

fig, axes = plt.subplots(1, 1, figsize=(10, 10))
sns.distplot(C,
fit=norm, kde=True,
fit_kws ={"color": "#fc4f30", "lw": 1.5},
kde_kws={"color": "y", "lw": 1.5},
hist_kws={"histtype": "stepfilled", "linewidth": 1, "alpha": 0.1, "color": "b"},
norm_hist=True, ax=axes[0,0])

seaborn 库中的一个错误是,它不会生成拟合正态分布的标签,但会生成直方图或核密度的标签。
enter image description here

如何获取正态分布参数并在图中为其制作标签?

最佳答案

不要将它们作为绘图的输出;使用您传递给它的估计器对象:

norm.fit(C)

关于python - 使用seaborn库从最佳拟合正态分布中获取平均值和标准差,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35996070/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com