python画图
时间: 2023-06-22 09:25:44 浏览: 79
python绘图
Python 有很多画图库,比如 Matplotlib、Seaborn、Plotly 等。以下是一个简单的例子,使用 Matplotlib 库画一条简单的折线图:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
# 画图
plt.plot(x, y)
# 设置图表标题和轴标签
plt.title("Square Numbers", fontsize=24)
plt.xlabel("Value", fontsize=14)
plt.ylabel("Square of Value", fontsize=14)
# 设置刻度标记的大小
plt.tick_params(axis='both', labelsize=14)
plt.show()
```
这个程序会生成一个折线图,横轴为 x 值,纵轴为 x 的平方。你可以根据需要修改 x 和 y 的值,以及图表标题和轴标签。
阅读全文