weld-project / weld

High-performance runtime for data analytics applications

Home Page:https://www.weld.rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it possible to perform Pandas profiling on Weld

shashwatwork opened this issue · comments

Hi,

I would like to perform pandas profiling on particular data frame. Whether it can be achieved through weld.

Thanks

No, I'm asking about how to perform data profiling (https://pypi.org/project/pandas-profiling/) on top of DataFrameWeld under grizzly or some other classes.

eg (done on top of pandas DataFrame)
p = pandas_profiling.ProfileReport(df,check_correlation=False)
p.to_file("profiling01.html")

Here, pandas profiling takes only dataframe as input. Is it possible to give Weld Data frame as input. If yes please let me know how to do.

I had also tried with weld_df.df. basically it will convert weld object to pandas data frame and then work. But time taken is not reduced, it take some what higher than normal profiling.

profiling

Thanks

Thanks cool!