基本步骤
1. 通过plt.subplots控制布局,包含整体图片大小和子图个数。
figure, [ax1, ax2, ...] = plt.subplots(1, 2, figsize=(12, 8))
2. 通过seanborn画图函数中的ax参数,将对应的ax1或ax2或...传入。
以sns.boxplot(x变量名称,y变量名称,hue分组变量名称,data=数据)为例:
sns.boxplot(x=..., y=..., hue=..., ax=ax1)
3. 展现结果
plt.savefig() # 保存结果
plt.show() # 图片直接展示