Is there a way to display only specific tabs in the pandas profiling report output?
I am using pandas_profiling.ProfileReport(data)
but I only need the Overview, Variables and Sample tabs. So is there an option to hide the other tabs e.g. something like pandas_profiling.ProfileReport(data,correlations=False,missing_values=False)
and only display specific parts of the report?