写一个python代码,收集1970~2022年的GDP数据,然后将这些数据绘制到一个折线图上展示出来
时间: 2023-03-07 18:42:37 浏览: 233
matlab将表格数据转化成折线图代码-python_poc:PythonPOC
print('正在收集GDP数据...')import pandas as pd# 建立数据框
df = pd.DataFrame()# 设置年份字段
df['Year'] = range(1970,2023)# 获取GDP数据并填入到数据框中
for year in df['Year']:
df.loc[df['Year'] == year, 'GDP'] = getGDP(year)# 绘制折线图
import matplotlib.pyplot as pltplt.plot(df['Year'], df['GDP'])
plt.xlabel('Year')
plt.ylabel('GDP')
plt.title('GDP Trend')
plt.show()
阅读全文