标签: python matplotlib seaborn
因此,我一直在研究数据集,并且必须绘制要与Seaborn相邻绘制的图。不幸的是,使用FacetGrid函数,我只能将彼此相邻的同类绘制。
我希望你们能帮助我解决我的问题并预先感谢
[
答案 0 :(得分:1)
不要使用a figure-level function的catplot()每次创建一个新的FacetGrid,而是使用基础的轴级函数barplot()和pointplot()
catplot()
barplot()
pointplot()
即:
fig, (ax1, ax2) = plt.subplots(1,2) sns.barplot(..., ax=ax1) sns.pointplot(..., ax=ax2)