ax.plot绘制折线图
时间: 2023-07-06 10:26:07 浏览: 182
绘制折线图
是的,ax.plot方法可以用于绘制折线图。它的基本语法如下:
```python
ax.plot(x, y, **kwargs)
```
其中,x和y是数据序列,可以是列表、数组等可迭代对象;kwargs是一系列可选参数,用于设置折线的样式、标记、颜色等属性。例如,以下代码将绘制一条红色实线折线:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
fig, ax = plt.subplots()
ax.plot(x, y, color='red', linestyle='solid')
plt.show()
```
你也可以通过设置多个x和y序列,绘制多条折线。例如,以下代码将绘制两条不同颜色的折线:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y1 = [2, 4, 6, 8, 10]
y2 = [1, 3, 5, 7, 9]
fig, ax = plt.subplots()
ax.plot(x, y1, color='red', linestyle='solid')
ax.plot(x, y2, color='blue', linestyle='dashed')
plt.show()
```
阅读全文