Pandas-profiling

https://pandas-profiling.github.io/pandas-profiling/docs/master/rtd/

Installation

conda install -c conda-forge pandas-profiling

jupyter labextension install @jupyter-widgets/jupyterlab-manager

Usage

from pandas_profiling import ProfileReport

from pandas_profiling.report.presentation.flavours.widget.notebook import (

get_notebook_iframe,

)


profile = ProfileReport(

df,

title="title",

minimal=False,

html={"style": {"full_width": True}},

sort=None,

)


profile

profile.to_file("title.html")

profile.to_widgets()

profile_html = profile.to_html()