เมื่อใช้ Pandas เราสามารถสร้าง data frame และสร้างรูปและแกนได้ หลังจากนั้นเราสามารถใช้วิธีกระจายเพื่อวาดจุด
ขั้นตอน
-
สร้างรายชื่อนักเรียน คะแนนที่ได้รับ และรหัสสีสำหรับแต่ละคะแนน
-
สร้างกรอบข้อมูลโดยใช้ DataFrame ของ Panda พร้อมข้อมูลขั้นตอนที่ 1
-
สร้างตัวแปร fig และ axe โดยใช้วิธี subplots โดยค่าเริ่มต้น nrows และ ncols คือ 1
-
ตั้งค่าป้ายกำกับแกน X โดยใช้เมธอด plt.xlabel()
-
ตั้งค่าป้ายกำกับแกน Y โดยใช้วิธี plt.ylabel()
-
พล็อตกระจายของ *y* กับ *x* ที่มีขนาดและ/หรือสีของเครื่องหมายต่างกัน
-
หากต้องการแสดงรูป ให้ใช้วิธี plt.show()
ตัวอย่าง
from matplotlib import pyplot as plt import pandas as pd no_of_students = [1, 2, 3, 5, 7, 8, 9, 10, 30, 50] marks_obtained_by_student = [100, 95, 91, 90, 89, 76, 55, 10, 3, 19] color_coding = ['red', 'blue', 'yellow', 'green', 'red', 'blue', 'yellow', 'green', 'yellow', 'green'] df = pd.DataFrame(dict(students_count=no_of_students, marks=marks_obtained_by_student, color=color_coding)) fig, ax = plt.subplots() plt.xlabel('Students count') plt.ylabel('Obtained marks') ax.scatter(df['students_count'], df['marks'], c=df['color']) plt.show()
ผลลัพธ์