Property to store most recent won deal stores information in rather odd format. The data is in datetime format with different timezones.
I'm getting the following errors:
"If tzaware, these values represent unix timestamps, so we" and "ValueError: Array must be all same time zone"
When I try one of the following commands:
pd.to_datetime(df1['properties__recent_deal_close_date__value']
)
and
df1['properties__recent_deal_close_date__value'].dt.tz_convert('Eruope/Berlin')
I would like to convert data such as this:
2018-11-16 11:32:51.285000+01:00
2019-02-28 17:13:49.492000+01:00
2018-08-29 09:50:51+02:00
To this:
2019-11-16
2019-02-28
2018-08-29