python绘制折线图并标注最大最小值
时间: 2023-10-18 09:11:43 浏览: 182
利用python画出折线图
要绘制折线图并标注最大最小值,可以使用Python中的matplotlib库。以下是一个简单的例子:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y = [3, 4, 5, 2, 6]
# 绘制折线图
plt.plot(x, y)
# 标注最大最小值
plt.annotate('max', xy=(x[y.index(max(y))], max(y)), xytext=(-20, 10), textcoords='offset points', arrowprops=dict(arrowstyle='->', connectionstyle='arc3,rad=.2'))
plt.annotate('min', xy=(x[y.index(min(y))], min(y)), xytext=(-20, -20), textcoords='offset points', arrowprops=dict(arrowstyle='->', connectionstyle='arc3,rad=.2'))
plt.show()
```
这个例子中,我们首先定义了x和y的值,然后使用`plt.plot()`函数绘制折线图。接着,我们使用`plt.annotate()`函数标注最大值和最小值。`plt.annotate()`函数的第一个参数是标注文本,第二个参数是标注的坐标,`xytext`参数是文本的偏移量,`textcoords`参数是偏移量的参考坐标系,`arrowprops`参数是箭头的样式。
最后,我们使用`plt.show()`函数显示图形。
阅读全文