将Seaborndistplot代码更新到0.11版

使用 distplot 绘制直方图

sns.distplot(a, color="red", label="100% Equities")
sns.distplot(a, color="red", label="100% Equities")

在 Seaborn 0.11 或更高版本下运行它会产生一个警告,即 distplot 将被弃用并使用 displot 代替。

使用displot作为直接替换(简单地将函数名称从distplot 更改displot)不会产生相同的直方图。

什么是替换代码?

回答

  • histplot 代替 distplot
  • 并添加关键字 args kde=True, stat="density", linewidth=0

所以:

sns.histplot(a, color="red", label="100% Equities", kde=True, stat="density", linewidth=0)

替换


以上是将Seaborndistplot代码更新到0.11版的全部内容。
THE END
分享
二维码
< <上一篇
下一篇>>