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
We have a problem converting uploads from Spark to Polars.
This conversion is implemented in Pandas, but it takes a very long time to work on huge data. I would like to see this function in Polars for faster task calculations.
Description
We have a problem converting uploads from Spark to Polars.
This conversion is implemented in Pandas, but it takes a very long time to work on huge data. I would like to see this function in Polars for faster task calculations.
pandas_df = spark_df.toPandas()
polars_df = pl.DataFrame(pandas_df)
↧↧↧↧
polars_df = pl.DataFrame(spark_df)
The text was updated successfully, but these errors were encountered: