在Seaborn中,可以使用plt.subplots()
方法指定繪圖區域。這個方法會返回一個包含figure和axes對象的元組,可以將axes對象用作繪圖的區域。
例如,可以通過以下方式指定一個2x2的繪圖區域:
import matplotlib.pyplot as plt
import seaborn as sns
fig, axes = plt.subplots(2, 2, figsize=(10, 8))
sns.histplot(data=df, x='column1', ax=axes[0, 0])
sns.boxplot(data=df, x='column2', y='column1', ax=axes[0, 1])
sns.scatterplot(data=df, x='column3', y='column1', ax=axes[1, 0])
sns.lineplot(data=df, x='column4', y='column1', ax=axes[1, 1])
plt.tight_layout()
plt.show()
在上面的例子中,我們創建了一個2x2的繪圖區域,然后在每個區域中繪制了不同類型的圖表。最后使用plt.tight_layout()
方法來調整圖表的布局,確保它們不會重疊。