python 2.7 - Can't change MultiIndex to datetime index -


i'm trying convert multiindex datetime index.

all_data.index 

enter image description here

i tried

all_data.index.to_datetime() 

and pandas.to_datetime(all_data.index). both give same output error. enter image description here enter image description here

i tried resample data, failed also.

problem solved all_date.index.droplevel(level=0)


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -