您可以使用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]
欢迎分享,转载请注明来源:内存溢出
您可以使用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]
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)