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

วิธีตั้งค่าป้ายกำกับใน matplotlib.hlines


ในการตั้งป้ายกำกับใน matplotlib.hlines เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • เพิ่มเส้นแนวนอนพาดผ่านแกน y=1 โดยมีป้ายกำกับ y=1 color='orange' .
  • เพิ่มเส้นแนวนอนพาดผ่านแกน y=2 โดยมีป้ายกำกับ y=2 color='red' .
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import matplotlib.pyplot as plt

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

# Add horizontal line
plt.hlines(y=1, xmin=1, xmax=4, lw=7, color='orange')
plt.text(4, 1, 'y=1', ha='left', va='center')

# Add another horizontal line
plt.hlines(y=2, xmin=2, xmax=5, lw=7, color='red')
plt.text(2, 2, 'y=2', ha='right', va='center')

plt.show()

ผลลัพธ์

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

วิธีตั้งค่าป้ายกำกับใน matplotlib.hlines วิธีตั้งค่าป้ายกำกับใน matplotlib.hlines