1//get the latest version of pandas_profiling
2import numpy as np
3import pandas as pd
4import pandas_profiling
5
6df1=pd.read_csv(<File path>)
7
8profile = df1.profile_report(title="<give any name you want>")
9profile.to_file(output_file="<givefilename>.html")
1!pip install https://github.com/pandas-profiling/pandas-profiling/archive/master.zip
2
3from pandas_profiling import ProfileReport
4
5profile = ProfileReport(df, title='Pandas Profiling Report', explorative=True)
6profile.to_widgets()
1# You can download pandas-profiling by installing the version that runs on your computer for me this worked:
2pip install pandas-profiling==1.1.0 # Paste this in the terminal
3# Now type pip install pandas-profiling in your terminal it will say, Requirment already satisfied.