Nothing
forecast.dfpca <- function(object, h = 10, ...)
{
k <- object$order
y <- array(NA, dim = c(h, k))
for(ik in 1:k)
{
y[, ik] <- forecast(auto.arima(object$coef[, ik]), h = h)$mean
}
f <- object$basis[, 2: (k+1)]%*%t(y) + object$basis[,1]
return(f)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.