Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะจำกัดจำนวนกลุ่มที่แสดงใน Seaborn countplot โดยใช้ Matplotlib ได้อย่างไร


ในการจำกัดจำนวนกลุ่มที่แสดงในแผนภาพ Seaborn เราสามารถใช้ตัวแปร group_count ใช้ใน countplot() อาร์กิวเมนต์ของเมธอด

ขั้นตอน

  • สร้างร่างและแผนย่อยสองชุด

  • สร้าง data frame โดยใช้ 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()

ผลลัพธ์

จะจำกัดจำนวนกลุ่มที่แสดงใน Seaborn countplot โดยใช้ Matplotlib ได้อย่างไร