Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on March 8, 2022 12:20PM
Likes: 23
Replies: 4
Hi,
There are many pandas alternatives. One that is new and very fast is polars. Polars is built on Rust so it is memory safe and runs in parallel by design. I use polars in one of my recipes but have to convert it to pandas to write the dataset.
thx
Thanks @info-rchitect
, this has been added to the backlog!
Hello! I am very interested in this as well. Is there any easy way of checking the life cycle of the updates in the backlog (for example, if they have a tracking number, if they have been implemented in some version...)? Thanks!
Completely agree!
Currently, there is no benefit in using Polars, duckdb, Ray or Dask, because retrieving dataset always means getting Pandas DataFrame object. Converting it to anything else defeats the purpose.
You can write the results directly to the database, but it is a workaround: you'd still have to initialize the dataset object first. And your code environment would also require you to have db drivers and so on.
Would be nice to have different options for data retrieval and data writing. Polars seems like a good candidate.
Would love to see polars supported alongside pandas