simicd commented on issue #139: URL: https://github.com/apache/arrow-datafusion-python/issues/139#issuecomment-1445137142
@krzysztof-kwitt thanks for the suggestion, I've created a PR with additional export functions that would among others simplify export to polars DataFrames, see #236. Once merged you can convert datafusion dataframes to polars like this: ```python import polars as pl # Datafusion dataframe df = ... polars_df = pl.DataFrame(df.to_arrow_table()) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
