如何在 Matplotlib 中繪製斷裂的水平條形圖?


我們可以採取以下步驟繪製斷裂的條形圖,

  • 設定圖表大小並調整子圖之間和周圍的間距。
  • 建立一個圖形和一組子圖。
  • 繪製水平矩形序列。
  • 設定 **x** 和 **y** 軸刻度、X 軸標籤、Y 軸刻度和 Y 軸刻度標籤。
  • 配置網格線。
  • 使用 **annotate()** 方法顯示文字,該文字可以引用特定位置。
  • 要顯示圖表,請使用 **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()

輸出

更新於:09-06-2021

665 次瀏覽

開啟您的 職業生涯

完成課程以獲得認證

開始
廣告
© . All rights reserved.