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

จะสร้างพล็อตแถบแนวนอนที่เสียหายใน Matplotlib ได้อย่างไร?


เราสามารถทำตามขั้นตอนต่อไปนี้เพื่อสร้างพล็อตแท่งหัก

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • สร้างร่างและชุดแผนย่อย
  • พล็อตลำดับของสี่เหลี่ยมแนวนอน
  • ตั้งค่า x และ มาตราส่วนแกน ป้ายแกน X เครื่องหมาย Y และเครื่องหมายเครื่องหมาย Y
  • กำหนดค่าเส้นตาราง
  • ใช้ ใส่คำอธิบายประกอบ() วิธีการแสดงข้อความที่อ้างอิงถึงตำแหน่งใดตำแหน่งหนึ่งได้
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import matplotlib.pyplot as plt

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

fig, ax = plt.subplots()

ax.broken_barh([(110, 30), (150, 10)], (10, 9), facecolors='tab:blue')
ax.broken_barh([(10, 50), (100, 20), (130, 10)], (20, 9),
               facecolors=('tab:orange', 'tab:green', 'tab:red'))
ax.set_ylim(5, 35)
ax.set_xlim(0, 200)
ax.set_xlabel('seconds since start')
ax.set_yticks([15, 25])
ax.set_yticklabels(['Bill', 'Jim'])
ax.grid(True)

ax.annotate('race interrupted', (61, 25),
            xytext=(0.8, 0.9), textcoords='axes fraction',
            arrowprops=dict(facecolor='black', shrink=0.05),
            fontsize=16,
            horizontalalignment='right', verticalalignment='top')

plt.show()

ผลลัพธ์

จะสร้างพล็อตแถบแนวนอนที่เสียหายใน Matplotlib ได้อย่างไร?