I have a dataframe with date columns that are in this initial format:
2018-04-30T22:43:36-04:00
I am using df[['col]].apply(pd.to_datetime)
to convert them, however the conversion automatically adds +4 hours because of the timezone part. Is there any way to ignore that and convert the column to datetime without changing the timezone?
Thanks