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
polars has become recently a very attractive - and faster - alternative to pandas, so we should support it, as well.
Solution
Largely copying what's in place for pandas, implement support for reading data into a polars dataframe with read_csv and from a polars dataframe with write_csv.
The text was updated successfully, but these errors were encountered:
I'll take this. I believe the best way to do this is to start using narwhals (which provides a dataframe-agnostic API). There doesn't appear to be support for a read_csv in Narwhals, but there is a write_csv that we can use.
But that will add two dependencies rather than just one, polars. Isn't it a bit overkilling to use narwhals in this case, specially considering that it only implements half of what we need?
Problem
polars
has become recently a very attractive - and faster - alternative topandas
, so we should support it, as well.Solution
Largely copying what's in place for
pandas
, implement support for reading data into apolars
dataframe withread_csv
and from apolars
dataframe withwrite_csv
.The text was updated successfully, but these errors were encountered: