如何对 Matplotlib/Seaborn 子图之间的空间进行调整以用于多图布局?


若要调整 matplotlib/seaborn 子图之间的空间以用于多图布局,我们可以采取以下步骤

步骤

  • 设置图形大小并调整子图之间及周围的填充。

  • 创建图形和一组子图。

  • 调整子图布局参数。

  • 为所有子图创建 Seaborn 的箱线图。

  • 使用 Show() 方法显示图形。

import seaborn as sns
from matplotlib import pyplot as plt

plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

fig, axes = plt.subplots(2, 2)

# Adjust the subplot layout parameters
fig.subplots_adjust(hspace=0.125, wspace=0.125)

# Create Seaborn boxplot for all the subplots
sns.boxplot(ax=axes[0, 0])
sns.boxplot(ax=axes[0, 1])
sns.boxplot(ax=axes[1, 0])
sns.boxplot(ax=axes[1, 1])

# Display the plot
plt.show()

输出

它将产生以下输出 −

更新日期: 19-10-2021

6K+ 浏览量

开启您的 职业

通过完成课程获得认证

开始
广告