我正在尝试pandas profiling
在泰坦尼克号日期集上使用。在概述部分下有一些带有标题“ HIGH CORRELATION
”的功能
- 我知道相关性的含义是什么,但标题并没有说明哪个特征与该特征相关?
- 那么
HIGH CORRELATION
熊猫分析文档中的“”是什么意思?
我正在尝试pandas profiling
在泰坦尼克号日期集上使用。在概述部分下有一些带有标题“ HIGH CORRELATION
”的功能
HIGH CORRELATION
熊猫分析文档中的“”是什么意思?您还可以设置阈值来确定要考虑的内容HIGH CORRELATION
。例如(使用当前最新版本3.1.0
的pandas_profiling
),
profile = ProfileReport(df,
missing_diagrams=None,
interactions=None,
correlations={"pearson": {"calculate": True, "threshold": 0.8},
"spearman": {"calculate": False},
"kendall": {"calculate": False},
"phi_k": {"calculate": False},
"cramers": {"calculate": False}},
explorative=True)
profile