相互绘制两个不同类型的图(Seaborn,FacetGrid)

时间:2019-11-21 21:47:53

标签: python matplotlib seaborn

因此,我一直在研究数据集,并且必须绘制要与Seaborn相邻绘制的图。不幸的是,使用FacetGrid函数,我只能将彼此相邻的同类绘制。

我希望你们能帮助我解决我的问题并预先感谢

the first plot [the second plot[2]

1 个答案:

答案 0 :(得分:1)

不要使用a figure-level functioncatplot()每次创建一个新的FacetGrid,而是使用基础的轴级函数barplot()pointplot()

即:

fig, (ax1, ax2) = plt.subplots(1,2)
sns.barplot(..., ax=ax1)
sns.pointplot(..., ax=ax2)