gpt4 book ai didi

r - mtsdi中的arima方法

转载 作者:行者123 更新时间:2023-12-04 06:30:35 25 4
gpt4 key购买 nike

我有一个包含大量缺失值的大型数据集(超过 2000 行和 2000 个变量)。我正在使用 R 的 mtsdi 包的 mnimput 函数来估算所有缺失值。这是我的代码

formula = data
imput_out <- mnimput(formula,data, by = NULL, log = FALSE, log.offset = 1,
eps = 1e-3, maxit = 1e2, ts = TRUE, method = "arima", ar.control = list(order = c(1,1,1), period = 4, f.eps = 1e-6, f.maxit = 1e3, ga.bf.eps = 1e-6,verbose = TRUE, digits = getOption("digits")))

但我收到一个错误
Error in o[1:3, j] : incorrect number of dimensions

请帮帮我。

最佳答案

你必须真正深入到包源中才能发现这里发生了什么。
ar.control 被放入一个变量 o 中,该变量由您放入公式的列的 j # 迭代。所以如果你的公式看起来像 ~c31+c32+c33 你的 ar 项需要是 3 列 (p,d,q) 值

为了便于编辑,我将它分配在 ar.control 参数之外arcontrol<-list(order=cbind(c(1,0,0),c(0,0,1),c(1,0,0)), period=NULL)

mnimput(formula,data,eps=1e-3,ts=TRUE, method="arima", ar.control=arcontrol

如果您有兴趣,这里是包源
function (xn, o, s, eps, maxit) 
{
rows <- dim(xn)[1]
cols <- dim(xn)[2]
models <- as.list(rep(NA, cols))
ar.pred <- matrix(NA, nrow = rows, ncol = cols)
for (j in 1:cols) {
if (is.null(s)) {
order <- o[1:3, j]
seasonal <- list(order = c(0, 0, 0), period = NA)
}
else {
order <- o[1:3, j]
seasonal <- list(order = o[4:6, j], period = s)
}
models[[j]] <- arima(xn[, j], order = order, seasonal = seasonal,
xreg = NULL, optim.control = list(maxit = maxit,
reltol = eps))
ar.pred[, j] <- xn[, j] - residuals(models[[j]])
}
retval <- list(ar.pred = ar.pred, models = models)
return(retval)
}

关于r - mtsdi中的arima方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29472532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com