Generate Pandas profiling report and save it to html

PHOTO EMBED

Wed Jan 26 2022 02:55:52 GMT+0000 (Coordinated Universal Time)

Saved by @jmbenedetto #python

from pandas_profiling import ProfileReport
profile = ProfileReport(df, title="Pandas Profiling Report")
profile.to_file("your_report.html")
content_copyCOPY