Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/r/77.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
确定哪些项目在超过14500个时间序列的批次r预测中存在排名不足问题_R_Forecasting - Fatal编程技术网

确定哪些项目在超过14500个时间序列的批次r预测中存在排名不足问题

确定哪些项目在超过14500个时间序列的批次r预测中存在排名不足问题,r,forecasting,R,Forecasting,关于确定14554的哪个时间序列产生了信息,有什么想法吗 1:在predict.lm(fit,newdata=data.frame(X))中:从 等级不匹配可能会产生误导” 使用以下代码运行批处理预测时: ns <- ncol(UPCts) # Forecasted items h <- 5 # Forecast periods cl <- 95 # Confidence level FcstLo1 <- matrix(NA,nrow=h,ncol=ns) for(i

关于确定14554的哪个时间序列产生了信息,有什么想法吗

1:在predict.lm(fit,newdata=data.frame(X))中:从 等级不匹配可能会产生误导”

使用以下代码运行批处理预测时:

ns <- ncol(UPCts) # Forecasted items
h <- 5 # Forecast periods
cl <- 95  # Confidence level

FcstLo1 <- matrix(NA,nrow=h,ncol=ns)
for(i in 1:ns)
   FcstLo1[,i] <- forecast(UPCts[,i], level=c(cl), h=h, robust = TRUE,
                      find.frequency = TRUE, allow.multiplicative.trend = TRUE)$lower

ns
capture.output
以字符串形式返回命令的输出
capture.output
以字符串形式返回命令的输出