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

จะสร้างกราฟแท่งแนวนอนที่เสียหายใน matplotlib ได้อย่างไร?


ในการสร้างกราฟแท่งแนวนอนที่เสียหายใน matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -

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

ตัวอย่าง

import matplotlib.pyplot as plt

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

fig, ax = plt.subplots()

# Horizontal sequence of rectangles
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'))

# Scale X and Y axes limits
ax.set_ylim(5, 35)
ax.set_xlim(0, 200)

# Configure the grid lines
ax.grid(True)

# Annotate the broken bars
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 ได้อย่างไร? จะสร้างกราฟแท่งแนวนอนที่เสียหายใน matplotlib ได้อย่างไร?