该error是resample所触发的,主要是resample(重采样)的索引需要是datetime格式的,所以只需在resample之前加一行。 data.index = pd.to_datetime(data.index)