〇出力グラフ
〇コード
from pandasdmx import Request
import matplotlib.pyplot as plt
oecd = Request('OECD')
countries="CAN+USA+FRA"
data_response = oecd.data(resource_id='AEI_OTHER', key=countries + ".NOX/all?startTime=1985&endTime=2017")
oecd_data = data_response.data
df = data_response.write(oecd_data.series, parse_time=True)
df = df.unstack(level=0).to_frame()
df.columns=['Tonnes']
df = df.reset_index()
df = df[["COUNTRY", "TIME_PERIOD", "Tonnes"]]
df.set_index(["COUNTRY", "TIME_PERIOD"], inplace=True)
ax = df.unstack(level=0).plot()
plt.xticks(rotation=90)
plt.legend(loc='best')
plt.show()
〇元データ
Agri-Environmental other indicators
https://stats.oecd.org/Index.aspx?DataSetCode=AEI_OTHER
○関連情報
・Pandasdmxに関する他の記事はこちらを参照してください。
0 件のコメント:
コメントを投稿