如何使用 Matplotlib 来限制在 Seaborn 计数图中显示的分组数量?
要限制在 Seaborn 计数图中显示的分组数量,我们可以使用变量 group_count,在 countplot() 方法的参数中使用。
步骤
创建一个 figure 和两组子图。
使用 Pandas 创建一个具有两个键的数据帧。
初始化一个变量 group_count 来限制 countplot() 方法中的分组计数。
使用 countplot() 方法来显示使用条形图在各个分类箱中观测到的计数。
调整子图之间和周围的间距。
示例
import pandas as pd import numpy as np import seaborn as sns from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True f, axes = plt.subplots(1, 2) df = pd.DataFrame(dict(col1=np.linspace(1, 10, 5), col2=np.linspace(1, 10, 5), col3=np.linspace(1, 10, 5))) group_count = 1 sns.countplot(df.col1, x='col1', color="red", ax=axes[0], order=df.col1.value_counts().iloc[:group_count].index) sns.countplot(df.col2, x="col2", color="green", ax=axes[1], order=df.col2.value_counts().iloc[:group_count].index) plt.tight_layout() plt.show()
输出
广告