我正在使用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)
是否有一种方法可以检索生成的轮廓的坐标?我尝试了以下(from this answer):
for c in ax.get_children():
if type(c) == matplotlib.contour:
print c.get_extents()
不幸的是,Bur无效,
任何有关进行方法的建议都将非常有用。