python 2.7 - Can't change MultiIndex to datetime index -
i'm trying convert multiindex datetime index.
all_data.index
i tried
all_data.index.to_datetime()
and pandas.to_datetime(all_data.index)
. both give same output error.
i tried resample data, failed also.
problem solved all_date.index.droplevel(level=0)
Comments
Post a Comment