Pandas profiling is a #Python module with which we can quickly do an #ExploratoryDataAnalysis with just a few lines of code:
from pandas_profiling import ProfileReport
report = ProfileReport(df_titanic)
report. to_file(output_file='report.html')
#python #ExploratoryDataAnalysis #eda #datascience #dataviz #DataMining #pandasprofiling