标签: seaborn subplot
我使用以下内容创建子图
xml
但是,seaborn中的对图功能不支持轴扩展,知道如何将其绘制为子图吗?
谢谢。
答案 0 :(得分:0)
实际上,如果我通过了plt.subplots(2, 2),它将返回2 * 2数组,因此我应该使用sns.plotfunc(..., ax = axs[0][1]),
plt.subplots(2, 2)
sns.plotfunc(..., ax = axs[0][1])
答案 1 :(得分:0)
您可以使用Seaborn的PairGrid来绘制多个成对图,如下所示:
g = sns.PairGrid(df, y_vars=['variable_a','variable_b'], x_vars=["variable_c", "variable_d"], height=4) g.map(sns.regplot) plt.show()
有关如何使用PairGrid的另一个示例可以找到here。