Answers for "using pandas profiling on collab"

3

pandas profiling

!pip install https://github.com/pandas-profiling/pandas-profiling/archive/master.zip
  
from pandas_profiling import ProfileReport

profile = ProfileReport(df, title='Pandas Profiling Report', explorative=True)
profile.to_widgets()
Posted by: Guest on February-18-2021
2

pandas profiling

profile = df.profile_report(title=’Pandas Profiling Report’)profile.to_file(output_file=”Pandas Profiling Report — AirBNB .html”)
Posted by: Guest on March-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language