matplotlib柱状图显示数值
时间: 2023-10-01 17:04:49 浏览: 171
matplotlib画图之柱状图
可以通过在柱状图上方添加文本标注的方式显示数值。可以使用`plt.text()`函数在柱状图上方添加文本标注,具体代码如下:
```python
import matplotlib.pyplot as plt
import numpy as np
# 构造数据
x = np.arange(5)
y = [10, 8, 6, 4, 2]
# 绘制柱状图
plt.bar(x, y)
# 添加文本标注
for a, b in zip(x, y):
plt.text(a, b + 0.05, '%.0f' % b, ha='center', va='bottom')
# 显示图形
plt.show()
```
其中,`plt.text()`函数的第一个参数为文本标注的x坐标,第二个参数为文本标注的y坐标,第三个参数为文本内容,`'%.0f' % b`表示将数值b格式化为整数,第四个参数`ha='center'`表示水平居中对齐,第五个参数`va='bottom'`表示垂直方向底部对齐。
阅读全文