Hi
I am trying to run the bellow code:
'''
cpi = ek.get_timeseries(['USCPI=ECI'],start_date='2005-01-01', end_date = "2020-09-24", interval='monthly')
cpi=cpi.resample("D").mean()
cycle, trend=sm.tsa.filters.hpfilter(cpi, 6.25 (1600/4**4))
'''
Also,
When I read the ric and call the columns names it appears just [Value] and not the date column?
'''cpi.columns'''
How can I work date like a normal column?