I am encountering an issue with generating report using Pandas Profiling library. I have uninstalled and installed the library again in a newly created environment , still not able to generate any report. Only now the table is displayed as shown in ss. Please help me fix it.
import numpy as np
import pandas as pd
from ydata_profiling import ProfileReport```
```from sklearn.datasets import load_diabetes```
```diab_data=load_diabetes()```
```df=pd.DataFrame(data=diab_data.data,columns=diab_data.feature_names)```
```df.head()```
```### To Create the Simple report quickly
profile = ProfileReport(df, title='Pandas Profiling Report')```
```profile.to_widgets()```
I was expecting To see reports being generated and green progress bar but rather i see 0% rendering and tables. Please help me fix it.
No report is rendered using pandas profiling, i only see this piece of code :
`Summarize dataset: 0%| | 0/5 [00:00<?, ?it/s]
Generate report structure: 0%| | 0/1 [00:00<?, ?it/s]
Render widgets: 0%| | 0/1 [00:00<?, ?it/s]`
`Solution to rendering the report again:`
`pip install -U ipywidgets`