Skip to content

ARIMA

5 messages · Fredrik Berchtold, Alvaro A. Novo, Jason Turner +2 more

#
Thanks,
Can't find an ARIMA in base, dse1/2 or tseries, only references to. What
package is it in?
Thanks again!
Best regards,
/fb

-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
#
On Saturday 30 December 2000 15:09, Fredrik Berchtold wrote:
library(ts) 
?arima0 # Developed by Prof. Brian Ripley using exact ML
and library tseries has 'arma,' using conditional least squares.

Alvaro A. Novo
R-1.2.0
Linux SuSE 6.4
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
#
Hi,
ts

You can also use the fracdiff package for a fractionally differenced
arima model (max. likelihood estimation of parameters).

Cheers,

Jason Turner
#
On Sat, 30 Dec 2000, Fredrik Berchtold wrote:

            
Try the tools:
Help files with alias or title matching `arima':
Type `?FOO' to inspect entry `FOO(PKG) TITLE'.

arima0(ts)   ARIMA Modelling of Time Series -- Preliminary Version
Help files with alias or title matching `ARIMA':
Type `?FOO' to inspect entry `FOO(PKG) TITLE'.

arima0(ts)   ARIMA Modelling of Time Series -- Preliminary Version

What was the problem?
#
"Jason" == Jason Turner <jasont at indigoindustrial.co.nz> writes:
  Jason> You can also use the fracdiff package for a fractionally differenced
  Jason> arima model (max. likelihood estimation of parameters).

Fracdiff's covariance matrix always leave me puzzled. Consider this (slightly
modified) 'example(fracdiff)' session:
[1]          1 1866294289  525838217
Warning message:
unable to compute correlation matrix in: switch(temp$info, warning("warning in gamma function"), warning("singular Hessian"),
d       ar1      ma1
d   -2.926964e+11 -4251.568 4249.104
ar1 -4.251568e+03     0.000    0.000
ma1  4.249104e+03     0.000    0.000      

Quoting from Venables and Ripley (S Programming, p 168): "no estimate is
complete without some estimate of its uncertainty". 

That would leave fracdiff incomplete, or even broken, wouldn't it?

Cheers, Dirk