วิธีการตั้งค่าช่วงแกนใน matplotlib
คุณสามารถใช้ไวยากรณ์ต่อไปนี้เพื่อกำหนดช่วงแกนของพล็อตใน Matplotlib:
#specify x-axis range plt. xlim (1, 15) #specify y-axis range plt. ylim (1, 30)
ตัวอย่างต่อไปนี้แสดงวิธีใช้ไวยากรณ์นี้ในทางปฏิบัติ
ตัวอย่างที่ 1: ระบุช่วงของทั้งสองแกน
รหัสต่อไปนี้แสดงวิธีการระบุช่วงสำหรับทั้งสองแกน:
import matplotlib. pyplot as plt #define x and y x = [1, 4, 10] y = [5, 11, 27] #create plot of x and y plt. plot (x, y) #specify x-axis and y-axis range plt. xlim (1, 15) plt. ylim (1, 30)
ตัวอย่างที่ 2: ระบุช่วงสำหรับแกน X เท่านั้น
รหัสต่อไปนี้แสดงวิธีการระบุช่วงสำหรับแกน X เท่านั้น:
import matplotlib. pyplot as plt #define x and y x = [1, 4, 10] y = [5, 11, 27] #create plot of x and y plt. plot (x, y) #specify x-axis range plt. xlim (1, 15)
ตัวอย่างที่ 3: ระบุช่วงสำหรับแกน Y เท่านั้น
รหัสต่อไปนี้แสดงวิธีการระบุช่วงสำหรับแกน Y เท่านั้น:
import matplotlib. pyplot as plt #define x and y x = [1, 4, 10] y = [5, 11, 27] #create plot of x and y plt. plot (x, y) #specify y-axis range plt. ylim (1, 30)
แหล่งข้อมูลเพิ่มเติม
วิธีกำหนดขนาดตัวอักษรของป้ายกำกับเครื่องหมายถูกใน Matplotlib
วิธีเพิ่มขนาดพล็อตใน Matplotlib
วิธีเพิ่มข้อความลงในแปลง Matplotlib