Replies: 2 comments 5 replies
-
In array_types.py I added
this is a temporary fix. When I deploy I won't be able to change the code in vaex. is there any other way I can convert? Help is appreciated. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Probably fixed in #1920 which will be released soon (v4.9) |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am reading a parquet file and one of the date-time columns is of type timestamp[ms, tz=UTC]. I have tried converting this to
df['time'].astype('datetime64[ms]')
df['time'].astype('timestamp')
but I always get the error
raise NotImplementedError(f'Cannot convert {arrow_type}') NotImplementedError: Cannot convert timestamp[ms, tz=UTC]
. Any suggestions on how to convert this to a supported type.I can print the data frame but the second I try to interact with this column like doing
df.dtypes
I get this error.I want to convert this column to a sting ideally so that I can concat it with another string column.
thanks for your help.
Beta Was this translation helpful? Give feedback.
All reactions