在哪里可以找到 pandas-profiling 的配置参数?
Where to find configuration parameters for pandas-profiling?
我很难找到 df.profile_report
和 pandas_profiling.ProfileReport
中使用的默认配置参数(kwargs
参数)。在哪里可以找到可用参数的列表?
截至今天,这些参数的键值存储在这里: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
}
)
我很难找到 df.profile_report
和 pandas_profiling.ProfileReport
中使用的默认配置参数(kwargs
参数)。在哪里可以找到可用参数的列表?
截至今天,这些参数的键值存储在这里: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
}
)