我正在Tableau中使用以下R脚本进行每月预测。它可以正常工作,但我想从计算中排除当前月份。
SCRIPT_REAL("library(forecast);
time <- ts(.arg1,start=c(2013,1), frequency=12);
fcast <- forecast(time, h=.arg2[1]);
n<-length(.arg1);
append(.arg1[(.arg2[1]+1):n],ifelse(fcast$mean < 0, 0, fcast$mean), after = n-.arg2[1])",
[SUM_RESOLVED],[Months Ahead])
请帮助。