The code:
A <- matrix(NA, nrow = 10, ncol = 3)
colnames(A) <- paste('trial', 1:3)
Let I want to name the third column with something different from trial 3: how may I?
Ok, now:
library(vars)
data(Canada)
var.2c <- VAR(Canada, p = 2, type = "const")
pred <- predict(var.2c, n.ahead = 8, ci = 0.95)
If I want to see the first value of pred, according to what predict method returns here, I have to input
> pred$fcst$e[1]
[1] 962.6557
You can see that I had to specify time series name e to obtain the value I wanted. If the code above was inserted into a function, it would not be possible to call pred$fcst$e[1] without specifying time series name, thereby it would not be possible to pass another time series data frame to our custom function.
Example: let X be a time series data frame. Then
pred.var <- function(X) {
var.2c <- VAR(X, p = 2, type = 'const')
pred <- predict(var.2c, n.ahead = 8, ci = .95)
# return(pred$fcst$...) # Here lies the issue, because function must know X column name
}
As you can see from example above, function pred.var must know the name of the X column whose it must return the prediction but it cannot unless it is read from X.
Any idea?
Thanks,
pred$fcst$e[1]by doingpred[[1]][[1]][1]as you can see it doesnt require variable names. – Jilber Sep 21 '12 at 16:46