如何计算偏相关分析,特别是spearman的pca?

时间:2011-07-18 13:38:50

标签: r

我已经尝试按照pcor.test手册(此处http://www.yilab.gatech.edu/pcor.html)的说明进行操作,但出现了错误

Non-numeric argument to mathematical function

怎么了?

我最初使用自己从SPSS导入的数据

pcor.test(a$Pexposed, a$w0, a$CAI, method = "spearman", na.rm = T)

但输出如下

Error in pcor.test(a$Pexposed, a$w0, a$CAI, method = "spearman", na.rm = T) : 
  unused argument(s) (method = "spearman", na.rm = T)

这里发生了什么?看来pcor.test不适合新手用户? 谢谢你的帮助。

PS: 这是我的数据。

Pexposed=c(1:10)
w0=c(3:12)
CAI=c(2:11)
a=data.frame(Pexposed=Pexposed,w0=w0,CAI=CAI)

1 个答案:

答案 0 :(得分:1)

您得到的错误是因为您为函数提供了非数字向量。