ในการเลื่อนกราฟตามแนวแกน X ใน matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -
- กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
- สร้างจุดข้อมูล x และ y โดยใช้ numpy
- พล็อตจุดข้อมูล x และ y สำหรับเส้นโค้งเดิม
- พล็อตกราฟที่เลื่อนในช่วง (1, 1+len(y)) ด้วยจุดข้อมูล y
- วางตำนานบนร่าง
- หากต้องการแสดงรูป ให้ใช้ show() วิธีการ
ตัวอย่าง
import numpy as np import matplotlib.pyplot as plt # Set the figure size plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True # x and y data points x = np.linspace(-5, 5, 100) y = np.sin(x) # Original graph and shifted graph plt.plot(x, y, label='Original Graph') plt.plot(range(1, 1+len(y)), y, label='Shifted Graph') # Place a legend plt.legend(loc='upper right') plt.show()
ผลลัพธ์
มันจะสร้างผลลัพธ์ต่อไปนี้