用matplotlib根据下图写绘图程序,图片为https://ibb.co/8g4SCxc
时间: 2023-07-19 19:02:56 浏览: 119
绘图程序
4星 · 用户满意度95%
以下是使用matplotlib绘制该图的代码:
```python
import matplotlib.pyplot as plt
# 设置数据
x_data = [2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019]
y_data1 = [0.7, 0.8, 0.9, 1.3, 1.1, 1.3, 1.5, 1.7, 2.0, 2.3]
y_data2 = [0.4, 0.5, 0.7, 1.0, 1.2, 1.4, 1.6, 1.8, 2.0, 2.2]
# 绘制折线图
plt.plot(x_data, y_data1, label='A')
plt.plot(x_data, y_data2, label='B')
# 添加图例
plt.legend(loc='upper left')
# 添加标题和坐标轴标签
plt.title('Line Chart')
plt.xlabel('Year')
plt.ylabel('Value')
# 显示图像
plt.show()
```
绘制的图像如下所示:
![line_chart](https://i.ibb.co/8g4SCxc/line-chart.png)
阅读全文