Open
Description
Discussed in #2121
Originally posted by dhirschfeld February 28, 2025
In my current code I have a very large pa.Table
that I want to convert to pd.DataFrame
. In the to_pandas
call I specify split_blocks
and self_destruct
as I don't want 2 copies of the data in memory.
I'm thinking of porting this code to narwhals
so was wondering if there's a way to do the same - convert to a pa.Table
to different format without doubling the memory requirements?
I'm interest in converting to either pandas
or polars
hence why I thought narwhals
might be a good fit.