File: summary.arma.Rd

package info (click to toggle)
tseries 0.10-7-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 924 kB
  • ctags: 352
  • sloc: fortran: 1,677; ansic: 623; makefile: 66; sh: 22
file content (35 lines) | stat: -rw-r--r-- 1,192 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
\name{summary.arma}
\alias{summary.arma}
\alias{print.summary.arma}
\title{Summarizing ARMA Model Fits}
\description{
  Methods for creating and printing summaries of ARMA model fits.
}
\usage{
\method{summary}{arma}(object, \dots)
\method{print}{summary.arma}(x, digits = max(3, getOption("digits") - 3),
      signif.stars = getOption("show.signif.stars"), \dots)
}
\arguments{
  \item{object}{an object of class \code{"arma"}; usually, a result of a
    call to \code{\link{arma}}.}
  \item{x}{an object of class \code{"summary.arma"}; usually, a result
    of a call to the summary method for objects of class \code{"arma"}.}
  \item{digits, signif.stars}{see \code{\link{printCoefmat}}.}
  \item{\dots}{further arguments passed to or from other methods.}
}
\details{
  The summary method computes the asymptotic standard errors of the
  coefficient estimates from the numerically differentiated Hessian
  matrix approximation.  The AIC is computed from the conditional
  sum-of-squared errors and not from the true maximum likelihood
  function. That may be problematic.
}
\value{
  A list of class \code{"summary.arma"}.
}
\seealso{
  \code{\link{arma}}
}
\keyword{models}
\keyword{ts}