I’m trying to use the pandas_profiling package to automagically describe some data frames from inside Apaceh Zeppelin. The code I’m running is: My result is: Any way to work around this? Any hope of working around it from inside Zeppelin? Answer The NotImplementedError is being raised from check_dataframe: https://github.com/ydataai/pandas-profiling/blob/v3.1.0/src/pandas_profiling/model/dataframe.py#L10. check_dataframe uses multimethod for enabling multiple argument dispatching to functions, which
Tag: pandas-profiling
Using Pandas-Profiling in AWS Glue
I am trying to use pandas profiling in AWS Glue. I downloaded the wheel file and used it in the Glue Library Path. BUt whenever I am trying to run a pandas profiling, module missing error is coming up(like multimethod, visions, networkx, pillow and more). What should I do? Answer Please make sure you’ve installed all dependencies from requirements.txt: https://github.com/pandas-profiling/pandas-profiling/blob/develop/requirements.txt