okay so I have two data frames both with datetime as indices.
When I call df1 index, I get:
df1.index[0]
Timestamp('2016-03-04 00:00:00')
when I call df2 index, i get:
df2.index[0]
Timestamp('2016-03-11 00:00:00', freq='W-FRI')
I'm trying to remove the freq='W-FRI' part. I want my second data frame (df2) to return the follow when I call for the first index:
df2.index[0]
Timestamp('2016-03-03 00:00:00')
Thanks so much. This small difference is not allowing me to index my data frames with dates.