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.
Discussed in #2121
Originally posted by dhirschfeld February 28, 2025
In my current code I have a very large
pa.Tablethat I want to convert topd.DataFrame. In theto_pandascall I specifysplit_blocksandself_destructas I don't want 2 copies of the data in memory.I'm thinking of porting this code to
narwhalsso was wondering if there's a way to do the same - convert to apa.Tableto different format without doubling the memory requirements?I'm interest in converting to either
pandasorpolarshence why I thoughtnarwhalsmight be a good fit.