Polars dataframe / arrow table #2169
Replies: 2 comments
-
In python and JS we already support instantiation from arrow (see python tests here). We also support pulling in data in python from numpy or pandas. For export in python, you can go to arrow or numpy / pandas via numpy. I think it would be fine to support importing/exporting to/from flat polars dataframes. We wouldn't want to introduce an extra required dependency, and it may be difficult to deconstruct a pivoted polars dataframe (as it is for pandas). It also might be straightforward to just import/export polars from the existing numpy/arrow APIs without having any first party support. |
Beta Was this translation helpful? Give feedback.
-
sorry for the duplicate. this is the same as #1157. I want to do this
instead of
|
Beta Was this translation helpful? Give feedback.
-
Feature Request
Hi, I was wondering how much work it would be to add support for
polars.DataFrame
, I saw a pull request forto_arrow()
that seemed to have stalled.Beta Was this translation helpful? Give feedback.
All reactions