检索Seaborn二元图中的轮廓坐标

时间:2018-07-12 21:08:31

标签: python matplotlib seaborn

我正在使用Seaborn的JointGrid函数绘制一些数据,如下所示:

import seaborn as sns; sns.set(style="ticks", color_codes=True)
tips = sns.load_dataset("tips")
g = sns.JointGrid(x="total_bill", y="tip", data=tips, space=0)
g.plot_joint(sns.kdeplot, cmap="Blues_d")
g.plot_marginals(sns.kdeplot, shade=True)

enter image description here

是否有一种方法可以检索生成的轮廓的坐标?我尝试了以下(from this answer):

for c in ax.get_children():
    if type(c) == matplotlib.contour:
        print c.get_extents()

不幸的是,Bur无效,

任何有关进行方法的建议都将非常有用。

0 个答案:

没有答案