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

Boxplot แบ่งชั้นตามคอลัมน์ใน Python Pandas


ในการสร้าง boxplot stratified by column ใน Python class เราสามารถทำตามขั้นตอนต่อไปนี้ -

ขั้นตอน

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย

  • สร้างกรอบข้อมูล Pandas ของข้อมูลตารางแบบสองมิติ ปรับขนาดได้ และอาจต่างกันได้

  • คำนวณฮิสโตแกรมของชุดข้อมูล

  • สร้างบ็อกซ์พล็อตที่เริ่มต้นโดยคอลัมน์

  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import pandas as pd
import numpy as np
from matplotlib import pyplot as plt

# Set the figure size
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

# Pandas dataframe
df = pd.DataFrame({"column1": [4, 6, 7, 1, 8], "column2": [1, 5, 7, 8, 1]})

# Compute the histogram
_, breaks = np.histogram(df.column1, bins=5)

# Create the boxplot
ax = df.boxplot(column='column1', by='column2')

# Display the plot
plt.show()

ผลลัพธ์

มันจะสร้างผลลัพธ์ต่อไปนี้ -

Boxplot แบ่งชั้นตามคอลัมน์ใน Python Pandas