forecast 함 수 를 사용 한 예측 값 을 추출 하고 출력 하 는 방법,ARIMA model in R
<R>
#for daily time series forecasting and plot the forecasting result, ref : http://robjhyndman.com/hyndsight/longseasonality/
n <- 2000
m <- 200
y <- ts(rnorm(n) + (1:n)%%100/30, f=m)
fourier <- function(t,terms,period)
{
n <- length(t)
X <- matrix(,nrow=n,ncol=2*terms)
for(i in 1:terms)
{
X[,2*i-1] <- sin(2*pi*i*t/period)
X[,2*i] <- cos(2*pi*i*t/period)
}
colnames(X) <- paste(c("S","C"),rep(1:terms,rep(2,terms)),sep="")
return(X)
}
library(forecast)
fit <- Arima(y, order=c(2,0,1), xreg=fourier(1:n,4,m))
print(fit$aicc)
pred = forecast(final_fit, h=2*m, xreg=fourier(n+1:(2*m),final_k,m))
plot(pred)
# finish plotting the forecasting result.
print(pred$mean)# this is the forecasting values in the forecasting interval.
# The code below is for writing the forecasting values in the file. ref:http://robjhyndman.com/hyndsight/batch-forecasting/
fcast <- matrix(NA, nrow=2*m, ncol=1)
fcast[,1] <- pred$mean
write(t(fcast), file="result.csv", sep=",", ncol=ncol(fcast))
</R>
Note
for the code above, we can see that the ‘pred’ is a list. According to the reference for the forecasting function (https://cran.r-project.org/web/packages/forecast/forecast.pdf), it has values list including ‘model’ to ‘fitted’. My trial tells me that pred[[4]] corresponds to pred$mean, i.e. the forecasting values.
Example code with Inferring Fourier series order K
Traversing all the possible K values. Choose the optimal K with the minimal AICc metric.
<R>
min_aicc <- 10000000000
final_k <- -1
final_fit <- NULL
for(k in seq(1, 15, by = 1))
{
fit <- auto.arima(y, seasonal=FALSE, xreg=fourier(1:n,k,m))
print(k)
print(fit$aicc)
if(fit$aicc < min_aicc)
{
min_aicc <- fit$aicc
final_k <- k
final_fit <- fit
}
}
print(final_k)
print(final_fit$aicc)
</R>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.