从Seaborn distplot获取数据点

从Seaborn distplot获取数据点,第1张

从Seaborn distplot获取据点

您可以使用matplotlib.patches
API
。例如,要获得第一行:

sns.distplot(x).get_lines()[0].get_data()

这将返回两个numpy数组,其中包含该行的x和y值。

对于条,信息存储在:

sns.distplot(x).patches

您可以通过以下功能访问栏的高度

patches.get_height()

[h.get_height() for h in sns.distplot(x).patches]


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5617037.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存