几行代码用matplotlib绘制柱状图
时间: 2023-12-10 11:56:50 浏览: 73
matplotlib画图之柱状图
以下是用Matplotlib绘制柱状图的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
labels = ['A', 'B', 'C', 'D']
values = [10, 23, 17, 21]
# 绘制柱状图
plt.bar(labels, values)
# 添加标题和标签
plt.title('Bar Chart')
plt.xlabel('X Label')
plt.ylabel('Y Label')
# 显示图形
plt.show()
```
这段代码将创建一个简单的柱状图,其中4个条柱表示标签A、B、C和D的值。你可以根据需要改变标签和值,以及自定义样式、颜色等。
阅读全文