首頁 >後端開發 >Python教學 >如何在 Matplotlib 中的水平長條圖上顯示值?

如何在 Matplotlib 中的水平長條圖上顯示值?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-11-27 17:16:12353瀏覽

How Can I Display Values on a Horizontal Bar Plot in Matplotlib?

在水平條形上顯示值

要在水平條形圖中顯示每個條形的值,您可以使用以下指令方法:

for i, v in enumerate(y):
    ax.text(v + 3, i, str(v), color='blue', fontweight='bold', verticalalignment='center')

解釋:

  1. 迭代y 值。
  2. 對於每個 y 值,將文字繪製為透過將 y 值加 3 來調整條形右側的值。
  3. 使用以下索引每個 y 值作為文字的 y 座標。
  4. 將文字設定為字串形式的 y 值。
  5. 依需求設定文字樣式(例如藍色、粗體)重量,居中垂直)。

範例:

# Update the x and y values from the original example
x = [u'INFO', u'CUISINE', u'TYPE_OF_PLACE', u'DRINK', u'PLACE', u'MEAL_TIME', u'DISH', u'NEIGHBOURHOOD']
y = [160, 167, 137, 18, 120, 36, 155, 130]

fig, ax = plt.subplots()
width = 0.75  # the width of the bars
ind = np.arange(len(y))  # the x locations for the groups
ax.barh(ind, y, width, color="blue")
ax.set_yticks(ind + width / 2)
ax.set_yticklabels(x, minor=False)
plt.title('title')
plt.xlabel('x')
plt.ylabel('y')

# Add code to display the values on the bars
for i, v in enumerate(y):
    ax.text(v + 3, i, str(v), color='blue', fontweight='bold', verticalalignment='center')

# Display the plot
plt.show()

這將產生一個水平條形圖,其值顯示在每個條形的頂部。

以上是如何在 Matplotlib 中的水平長條圖上顯示值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn