您好,我在使用 findCorrelation()函数时遇到麻烦,这是我的输入和输出:

findCorrelation(train, cutoff = .50, verbose = FALSE)



有人知道为什么会这样吗?

最佳答案

findCorrelation函数期望将相关矩阵作为x值,因此请尝试以下操作:

findCorrelation(cor(train), cutoff = .50, verbose = FALSE)

引用:Caret pre-processing

10-06 03:09