如何将 seaborn pairplot 绘制为子图?
How to plot seaborn pairplot as subplot?
我使用以下内容创建我的子图
fig, axs = plt.subplots(2,2)
sns.plotfunc(..., ax = axs[0])
但是,seaborn 中的 pairplot 函数不支持 ax augment,知道如何将其绘制为子图吗?
提前致谢。
我使用以下内容创建我的子图
fig, axs = plt.subplots(2,2)
sns.plotfunc(..., ax = axs[0])
但是,seaborn 中的 pairplot 函数不支持 ax augment,知道如何将其绘制为子图吗?
提前致谢。