我试图调用acf(相关)函数。这是我的代码的一部分:
RowCount <- 100
ColCount <- 2
AMatrix <- matrix(NA_integer_, nrow = RowCount, ncol = ColCount, byrow = FALSE)
AMatrix[,1] <- as.integer(seq.int(from = RowCount, to = 1, by = -1))
AMatrix[,2] <- as.integer(seq.int(from = 1, to = RowCount, by = 1))
# Column 1 is randomized, Column 2 stays the same
AMatrix[,1] <- sample.int(AMatrix[,1])
var(AMatrix)
CorData <- acf(x = AMatrix, type="correlation", plot = FALSE)
对&#34; var&#34;的调用功能有效。
当我调用acf函数时,收到以下错误消息: &#34; acf错误(x = AMatrix,类型=&#34;相关性&#34;,plot = FALSE): 对象&#39; C_acf&#39;找不到&#34;。
我在RStudio和64位RGui中都收到此错误。
可能是因为我错过了一个library()或require()调用吗?我对此表示怀疑。
非常感谢任何帮助/指示。
理查德