Skip to content

Instantly share code, notes, and snippets.

@satkr7
Last active October 3, 2020 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save satkr7/a56496592f79e1bb46c663b00d0e5669 to your computer and use it in GitHub Desktop.
Save satkr7/a56496592f79e1bb46c663b00d0e5669 to your computer and use it in GitHub Desktop.
#Install the below libaries before importing
import pandas as pd
from pandas_profiling import ProfileReport
#EDA using pandas-profiling
profile = ProfileReport(pd.read_csv('titanic.csv'), explorative=True)
#Saving results to a HTML file
profile.to_file("output.html")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment