-
-
Notifications
You must be signed in to change notification settings - Fork 803
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't store pandas.DataFrame with column of datetime that has timezone #926
Comments
I think that problem is that according to pansdas.dtypes.py L383
So if str(data.dtypes['tz_datetime']).startswith('datetime'):
data['tz_datetime'] = data['tz_datetime'].astype(str).replace('NaT', '')
alt.Chart(data).mark_rule().encode(x='tz_datetime:T') |
df.index = df.index.tz_localize("utc").tz_convert("Europe/Berlin") still crushes for me :/
|
It works in master but yet not been released. df.index = df.index.tz_localize("utc").tz_convert("Europe/Berlin").astype(str)
atl.Chart(df.reset_index()) # you code.... PS: df['index'] = df.index.tz_localize("utc").tz_convert("Europe/Berlin").astype(str) |
ok, thanks! |
sanitize_dataframe
does not understand data type datetime64[ns, UTC]Out:
In:
Out:
Same for
The text was updated successfully, but these errors were encountered: