Displaying 4 results from an estimated 4 matches for "dec02".
Did you mean:
  dc02
  
2010 May 04
1
How to make predictions with the predict() method on an arimax object using arimax() from TSA library
...ta(airmiles)
>air.ml=arimax(log(airmiles),order=c(0,1,1),seasonal=list(order=c(0,1,1),
>period=12),xtransf=data.frame(I911=1*(seq(airmiles)==69),
>I911=1*(seq(airmiles)==69)),
>transfer=list(c(0,0),c(1,0)),xreg=data.frame(Dec96=1*(seq(airmiles)==12),
>Jan97=1*(seq(airmiles)==13),Dec02=1*(seq(airmiles)==84)),method='ML')
 
Ok,so I've run the above code and an object called air.ml has now been created of class type arimax.According to the documentation this is the same type as arima.So now I make a prediction,say 15 time steps ahead:
 
>forecast=predict(air.m1,...
2007 Mar 01
0
Reshape data
...calls)
 [1] "TERRITORY"             "REGION"                "ACTIVITY_TYPE"        
 [4] "CONTACT_TYPE"          "TARGETED_FLG"          "CONTACT_GRADE"        
 [7] "CONTACT_PR_SPECIALITY" "UBM"                   "DEC02"                
[10] "JAN03"                 "FEB03"                 "MAR03"                
[13] "APR03"                 "MAY03"                 "JUN03"                
[16] "JUL03"                 "AUG03"...
2011 Oct 02
0
Arimax First-Order Transfer Function
...ded by Chan (2008)(airline example):
air.m1=arimax(log(airmiles),order=c(0,1,1),seasonal=list(order=c(0,1,1),
period=12),xtransf=data.frame(I911=1*(seq(airmiles)==69),
I911=1*(seq(airmiles)==69)),
transfer=list(c(0,0),c(1,0)),xreg=data.frame(Dec96=1*(seq(airmiles)==12),
Jan97=1*(seq(airmiles)==13),Dec02=1*(seq(airmiles)==84)),method='ML')
# Additive outliers are incorporated as dummy variables in xreg.
# Transfer function components are incorporated by the xtransf and transfer
# arguments.
# Here, the transfer function consists of two parts omega0*P(t) and
# omega1/(1-omega2*B)P(t) where t...
2010 May 05
0
R-help Digest, Vol 87, Issue 5
...ta(airmiles)
>air.ml=arimax(log(airmiles),order=c(0,1,1),seasonal=list(order=c(0,1,1),
>period=12),xtransf=data.frame(I911=1*(seq(airmiles)==69),
>I911=1*(seq(airmiles)==69)),
>transfer=list(c(0,0),c(1,0)),xreg=data.frame(Dec96=1*(seq(airmiles)==12),
>Jan97=1*(seq(airmiles)==13),Dec02=1*(seq(airmiles)==84)),method='ML')
 
Ok,so I've run the above code and an object called air.ml has now been created of class type arimax.According to the documentation this is the same type as arima.So now I make a prediction,say 15 time steps ahead:
 
>forecast=predict(air.m1,...