我很难找到df.profile_report和pandas_profiling.ProfileReport中使用的默认配置参数( kwargs参数)。在哪里可以找到可用的参数列表?
发布于 2019-08-15 22:50:04
到目前为止,这些参数的键值存储在这里:https://github.com/pandas-profiling/pandas-profiling/blob/master/src/pandas_profiling/config_default.yaml
下面是如何使用它们的示例:
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
}
)https://stackoverflow.com/questions/57511515
复制相似问题