I imported pandas, numpy and pandas profiling with codes below but for some reason it won't display any data but 3 lines of information, so here are codes:
from pandas_profiling import ProfileReport
profile=ProfileReport(df, title='Pandas Profiling Report', html={'style':{'full_width':True}})
profile
...and here is the output:
HBox(children=(HTML(value='Summarize dataset'), FloatProgress(value=0.0, max=26.0), HTML(value='')))
HBox(children=(HTML(value='Generate report structure'), FloatProgress(value=0.0, max=1.0), HTML(value='')))
HBox(children=(HTML(value='Render HTML'), FloatProgress(value=0.0, max=1.0), HTML(value='')))
Does anyone have an idea why it doesn't work, please?