python生成一张统计图
时间: 2023-06-25 16:07:38 浏览: 133
PHP生成统计图的类
5星 · 资源好评率100%
好的,您需要先安装 matplotlib 库,可以使用以下命令进行安装:
```
pip install matplotlib
```
下面是一个简单的例子,使用 matplotlib 生成一张柱状图:
```python
import matplotlib.pyplot as plt
# 数据
x = ["A", "B", "C", "D"]
y = [10, 20, 30, 40]
# 创建图表
fig, ax = plt.subplots()
# 绘制柱状图
ax.bar(x, y)
# 添加标题和标签
ax.set_title("My Bar Chart")
ax.set_xlabel("X Label")
ax.set_ylabel("Y Label")
# 显示图表
plt.show()
```
这段代码会生成一张简单的柱状图,显示在屏幕上。您也可以将图表保存到文件中,使用 `plt.savefig()` 方法即可。
阅读全文