使用 Pandas DataReader 绘制世界银行数据
World Bank Data Plotting with Using Pandas DataReader
我正在尝试使用 Pandas DataReader 绘制我从世界银行导入的数据框。但是当我绘制它时,它显示了一个奇怪的情节。年份列和 x 轴显示不正确。我应该怎么办?谢谢
[
from pandas_datareader import wb
import datetime
ind = ['NY.GNP.PCAP.CD']
df = wb.download(indicator=ind, country='CHN', start=2000, end=2021)
df.head()
df.plot()
NY.GNP.PCAP.CD
country year
China 2020 10610
2019 10390
2018 9600
2017 8740
2016 8270
from pandas_datareader import wb
import pandas as pd
import matplotlib.pyplot as plt
import datetime
ind = ['NY.GNP.PCAP.CD']
df = wb.download(indicator=ind, country='CHN', start=2000, end=2021)
然后你可以像这样使用 pd.plotting.scatter_matrix():
pd.plotting.scatter_matrix(df)
plt.show()
在输出中你有这样的直方图:
我正在尝试使用 Pandas DataReader 绘制我从世界银行导入的数据框。但是当我绘制它时,它显示了一个奇怪的情节。年份列和 x 轴显示不正确。我应该怎么办?谢谢
[
from pandas_datareader import wb
import datetime
ind = ['NY.GNP.PCAP.CD']
df = wb.download(indicator=ind, country='CHN', start=2000, end=2021)
df.head()
df.plot()
NY.GNP.PCAP.CD
country year
China 2020 10610
2019 10390
2018 9600
2017 8740
2016 8270
from pandas_datareader import wb
import pandas as pd
import matplotlib.pyplot as plt
import datetime
ind = ['NY.GNP.PCAP.CD']
df = wb.download(indicator=ind, country='CHN', start=2000, end=2021)
然后你可以像这样使用 pd.plotting.scatter_matrix():
pd.plotting.scatter_matrix(df)
plt.show()
在输出中你有这样的直方图: