matplotlib柱状图如何加上标
时间: 2023-10-20 12:04:47 浏览: 104
matplotlib画图之柱状图
签和标题?
您可以使用`plt.xlabel()`和`plt.title()`函数来添加标签和标题。例如:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [10, 20, 15, 25]
plt.bar(x, y)
plt.xlabel('X Label')
plt.ylabel('Y Label')
plt.title('Bar Plot')
plt.show()
```
这个代码将会绘制一个带有X轴标签为 `X Label`,Y轴标签为 `Y Label`,以及标题为 `Bar Plot` 的柱状图。
阅读全文