_get_resampler
“but got an instance of %r” % type(ax).__name__)
TypeError: Only valid with DatetimeIndex, TimedeltaIndex or PeriodIndex, but got an instance of ‘RangeIndex’
类型不对,需要转化类型
stock_data[‘trade_date’] =pd.to_datetime(stock_data[‘trade_date’], format=’%Y%m%d’, errors=’coerce’)
# 将 date 设定为 index
stock_data.set_index(‘trade_date’, inplace=True) 必须更爱 索引 ,指定日期为索引值。