Displaying 2 results from an estimated 2 matches for "predall".
Did you mean:
precall
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
...ante bueno
f52<-scan("f52.txt")
sb<-f52[1:200]; sp<-f52[201:245];
sb.ts <- ts(sb, start=c(2008, 1), frequency=52)
sb.ts # is important to see the end of this time series.
sp.ts<- ts(sp, start=c(2011, 45), frequency=52)
plot(sb.ts,ylab="No. focos")
# Main function
predAll<-function(x,h,tsname){
# INPUTS:
# x: time serie
# h: number of values to predict.
# tsname: maximun number of element in the hidden layer (nhmax=20).
#
##---- PACKAGES -----
library(forecast)
##---- MODELS -------
m1<-stl(x, s.window='periodic') #STL Decom...