为什么散点图没有显示在 pairplot 中

Why the scatter plot is not showing inside pairplot

sns.pairplot(advertising, x_vars=['TV', 'Newspaper', 'Radio'], y_vars='Sales',size=4, aspect=1, kind='scatter')
plt.show()

这里,当我调用 pairplot 函数时,它没有显示第一个图,如果您更改 x_vars 的顺序,那么它不会再次显示第一个图。

但是你可以单独看到它,我怎么能在一个 pairplot 中看到所有这些。

这是一个bug/feature introduced in seaborn v.0.11.0

diag_kind=None 传递给 pairplot

的解决方法