vaexio / vaex

Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second 🚀
https://vaex.io
MIT License
8.23k stars 590 forks source link

Datetime column conversion [to_datetime] support #2358

Open Tonyloyt opened 1 year ago

Tonyloyt commented 1 year ago

I tried to convert date column to timeseries with to_datetime function but facing issue df['date'] = vaex.to_datetime(df['date'],format='%Y-%m-%d')

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
/tmp/ipykernel_6013/2521434759.py in <module>
---->  df['date'] = vaex.to_datetime(df['date'],format='%Y-%m-%d')

AttributeError: module 'vaex' has no attribute 'to_datetime'

Any recommendation on how to work with timeseries column with vaex?

solwarsop commented 1 year ago

See #1011