I noticed that if I have pandas datetime index inside a pandas dataframe, the value of the dates changes when I call them by using .value
Example.
import pandas as pd
date_try=pd.date_range(start='2017-01-01',end='2017-05-01',freq='MS')
date_df=pd.DataFrame(date_try)
print(date_df)
Now notice how the date values change when I call
print(date_df.values)