search for: nnar

Displaying 2 results from an estimated 2 matches for "nnar".

Did you mean: near
2013 Sep 05
2
Pronósticos con modelos robusto de series de tiempo
Alguien me podría sugerir un paquete en R para generar pronóticos con modelos robusto de series de tiempo.   Saludos Enrique RAMOS [[alternative HTML version deleted]]
2013 Sep 05
0
Pronósticos con modelos robusto de series de tiempo
...(frequency(x)+1):length(x)]); #lab<-data.frame("F","R2","R2a","RSS") mat<-cbind(c(rmse1),c(rmse2),c(rmse3)) tab<-as.data.frame(mat) dimnames(tab)[[1]]<-c("RMSE") dimnames(tab)[[2]] <-c("STL","ARIMA","NNAR") print(tab) # Plot all predictions together par(mar=c(5.1, 4.1, 4.1, 8.1), xpd=TRUE) plot(f1,xlab="Time in Weeks",ylab=tsname,main="All models") lines(f2$mean,col=1,lwd=2) lines(f3$mean,col=3,lwd=2) lines(x,col=2,lwd=2) legend.txt = c("STL","...