python-如何在条形图的顶部显示值

Python新手在这里。我想在下图中的每个容器上方显示值:

条形图

这是我的代码:

x=[i for i in range(1,11)]

y=[0.95,

0.95,

0.89,

0.8,

0.74,

0.65,

0.59,

0.51,

0.5,

0.48]

plt.bar(x, height= y)

xlocs, xlabs = plt.xticks()

xlocs=[i+1 for i in range(0,10)]

xlabs=[i/2 for i in range(0,10)]

plt.xlabel('Max Sigma')

plt.ylabel('Test Accuracy')

plt.xticks(xlocs, xlabs)

plt.show()

这是我想要的图形:

条形图

回答:

只需添加

for i, v in enumerate(y):

plt.text(xlocs[i] - 0.25, v + 0.01, str(v))

之前plt.show()。您可以通过分别更改(-0.25)和(0.01)值来调整文本的居中或高度。

新剧情

以上是 python-如何在条形图的顶部显示值 的全部内容, 来源链接: utcz.com/qa/412836.html

回到顶部