Learn R Programming

seasonal (version 0.60.0)

static: Static Call of a seas Object

Description

A static call is a static replication of a call. Automatic procedures are substituted by the automatically chosen spec-argument options. The call can be copy/pasted to a script and used for further manipulations or future evaluation of the same model.

Usage

static(x, coef = FALSE, test = TRUE, verbose = FALSE)

Arguments

x
an object of class seas.
coef
logical, if TRUE, the coefficients are treated as fixed, instead of beeing estimated.
test
logical. By default the static call is executed and compared to the input call. If the final series is not identical, a warning is returned. If FALSE, the option is disabled.
verbose
logical, if TRUE, droped and kept series are listed.

Value

  • Object of class "call". Static call of an object of class seas. Can be copy/pasted into an R script.

Details

By default, the static call is tested. It is executed and compared to the input call. If the final series is not identical, a warning is returned.

If coef = TRUE, the coefficients are fixed as well.

References

Vignette with a more detailed description: http://cran.r-project.org/web/packages/seasonal/vignettes/seas.pdf

Wiki page with a comprehensive list of R examples from the X-13ARIMA-SEATS manual: https://github.com/christophsax/seasonal/wiki/Examples-of-X-13ARIMA-SEATS-in-R

Official X-13ARIMA-SEATS manual: http://www.census.gov/ts/x13as/docX13AS.pdf

See Also

seas for the main function of seasonal.

Examples

Run this code
m <- seas(AirPassengers)
static(m)
static(m, test = FALSE)

Run the code above in your browser using DataLab