search for: narmax

Displaying 1 result from an estimated 1 matches for "narmax".

Did you mean: armax
2012 Nov 29
0
What am I missing when using zoo on version 2.15?
...3 and 2.15. One of my codes run ok on 2.13 but on 2.15. I have tried to understand what is wrong but come up with nothing. Here is the code rm(list=ls()) graphics.off() library(R.matlab) library(zoo); library(xts); library(lattice); library(hydroGOF); a=readMat("exemplo_narmax_Aimores_MISO.mat") predicoes=zoo(cbind(a$predicoes[,,1]$Real,a$predicoes[,,1]$Predito),as.Date( a$predicoes[,,1]$data)) names(predicoes)=c("Real","Predito") ggof(obs=predicoes$Real,sim=predicoes$Predito,main="Predicao Vazao - NARMAX MISO", legend=c(&qu...