我正在尝试对我的数据使用“rcorr”函数,但问题是它只适用于矩阵。这就是我将data.frame转换为矩阵的原因:
my.data <- as.matrix(my.data)
它来到矩阵,但是当我输入“typeof”时它会显示
typeof(my.data)
[1]“character”
所以,“rcorr”给了我一个错误
Error in rcorr(my.data, type = "spearman") :
NA/NaN/Inf in foreign function call (arg 1)
In addition: Warning message:
In storage.mode(x) <- "double" : NAs introduced by coercion
谁能告诉我有什么问题?谢谢!