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

การพล็อตเส้นแนวนอนบนหลายแผนย่อยใน Python โดยใช้ pyplot


ในการพล็อตเส้นแนวนอนบนหลายแผนย่อยใน Python เราสามารถใช้แผนย่อยเพื่อรับหลายแกนและ axhline() วิธีการวาดเส้นแนวนอน

ขั้นตอน

  • สร้างร่างและชุดแผนย่อย ที่นี่ เราจะสร้าง 3 แผนย่อย

  • ใช้ axhline() วิธีการวาดเส้นแนวนอนในแต่ละแกน

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

ตัวอย่าง

from matplotlib import pyplot as plt
fig, (ax1, ax2, ax3) = plt.subplots(3)
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
ax1.axhline(y=0.5, xmin=0, xmax=3, c="black", linewidth=2, zorder=0)
ax2.axhline(y=0.5, xmin=0, xmax=3, c="red", linewidth=3, zorder=0)
ax3.axhline(y=0.5, xmin=0, xmax=3, c="yellow", linewidth=4, zorder=0)
plt.show()

ผลลัพธ์

การพล็อตเส้นแนวนอนบนหลายแผนย่อยใน Python โดยใช้ pyplot