Reputation: 12515
I am having a difficult time finding the default configuration parameters (the kwargs
argument) used in df.profile_report
and pandas_profiling.ProfileReport
. Where can I find a list of what parameters are available?
Upvotes: 2
Views: 2466
Reputation: 12515
As of today, the key-value store for those arguments is here: https://github.com/pandas-profiling/pandas-profiling/blob/master/src/pandas_profiling/config_default.yaml
An example of how you might use them:
report = pandas_profiling.ProfileReport(
df,
check_recoded=False,
check_correlation_pearson=False,
check_correlation_cramers=False,
missing_diagrams={
'bar': False,
'matrix': False,
'heatmap': False,
'dendrogram': False
}
)
Upvotes: 2