【问题标题】:missing values while using pandas datareader from FRED使用 FRED 的 pandas 数据读取器时缺少值
【发布时间】:2020-12-30 02:17:14
【问题描述】:

当我使用DataReader从FRED中抓取数据时,我的DataFrame中有一些NaN值,但是在FRED官方网站上,它们的数据和图表似乎是完整的,没有丢失。所以我想知道是什么导致 NaN 值出现在我的 DataFrame 中?以及如何解决?

import pandas as pd
import datetime as dt
import pandas_datareader as web
import matplotlib.pyplot as plt
from matplotlib import style
import matplotlib.ticker as ticker
style.use('dark_background')
prev3=620
end3=dt.datetime.today().date()
st3=end-pd.to_timedelta(prev3,unit='d')

tgt=['DFII5','DGS5','DFII10','DFII20','DFII30','GOLDAMGBD228NLBM','USD3MTD156N','USD12MD156N','FEDFUNDS']

fig,ax = plt.subplots(figsize=(20,10))
ax1=ax.twinx()
tgt=['USD3MTD156N','USD12MD156N','GOLDAMGBD228NLBM','DGS5']
#draw lines
interest=pd.DataFrame()

for i in tgt:
    interest[i]=web.DataReader(i,'fred',st3,end3)[i]
interest['GOLDAMGBD228NLBM']=1/interest['GOLDAMGBD228NLBM']*1000
for i in tgt:
    if i!='GOLDAMGBD228NLBM':
        ax.plot(interest[i],label=i+'(L)',linewidth=0.8)
    else:
        ax1.plot(interest[i],label=i+'(R)',color='r',linewidth=1,linestyle=':')
#draw stackplots
dfii=['DFII5','DFII10','DFII20','DFII30']
df=pd.DataFrame()
for i in dfii:
    df[i]=web.DataReader(i,'fred',st3,end3)[i]
for i in df:
    ax.stackplot(df.index,df[i],labels=df.columns,alpha=0.3)


ax.legend(loc=1)
ax1.legend(loc=2)
plt.show()

【问题讨论】:

    标签: python pandas matplotlib datareader pandas-datareader


    【解决方案1】:

    您能否查看 2020 年 9 月的股票代码 DGS5(从您上面的列表中)?

    • 2020 年 9 月 7 日星期一是美国假日,因此 FRED 的此代码/日期为 NaN。
    • 要删除绘图中的“中断”,您可以在绘图前删除 NaN 值。

    【讨论】:

      猜你喜欢
      • 2015-01-29
      • 1970-01-01
      • 2023-03-11
      • 2012-09-12
      • 2013-01-04
      • 1970-01-01
      • 2019-02-02
      • 2014-04-15
      • 2021-09-15
      相关资源
      最近更新 更多