You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a dataframe with a column containing dates (I do not want to use this column as the index of my dataframe). When printing the dataframe, the timezone information is lost. Directly accessing the .values shows the correct timezone.
currently the dtype of datetimes with timezones are of object dtype (and NOT datetime64[ns]
and hence there is not timezone information indicated on the column. It IS on the individual objects.
So this is a highly inefficient way to do things, but was simpler when it was implemented (quite a while ago).
I have a dataframe with a column containing dates (I do not want to use this column as the index of my dataframe). When printing the dataframe, the timezone information is lost. Directly accessing the .values shows the correct timezone.
This might be related to #6415
The text was updated successfully, but these errors were encountered: