柱状图和饼状图设置图上数据的代码
时间: 2023-11-30 17:02:36 浏览: 110
owc制作柱状图饼状图
5星 · 资源好评率100%
好的,针对你的问题,我可以给出一个 Python Matplotlib 库绘制柱状图和饼状图的示例代码。
柱状图设置数据的代码:
```python
import matplotlib.pyplot as plt
# 数据
labels = ['A', 'B', 'C', 'D', 'E']
values = [5, 3, 9, 6, 4]
# 绘制柱状图
plt.bar(labels, values)
# 设置标题和坐标轴标签
plt.title('Bar Chart')
plt.xlabel('Categories')
plt.ylabel('Values')
# 显示图像
plt.show()
```
饼状图设置数据的代码:
```python
import matplotlib.pyplot as plt
# 数据
labels = ['A', 'B', 'C', 'D', 'E']
sizes = [15, 30, 45, 10, 5]
# 绘制饼状图
plt.pie(sizes, labels=labels)
# 设置标题
plt.title('Pie Chart')
# 显示图像
plt.show()
```
以上是绘制柱状图和饼状图的基本代码,你可以根据自己的需求对其进行修改和扩展。
阅读全文