I converted my Time
column to datetime
values using this code:
df1['Time'] = pd.to_datetime(df1['Time'],utc=True)
These are UTC timestamps whcih is fine.
The column looks now like this:
I now want to eliminate the timezone specification +00:00
for each of the dates. How could I do this?