seasonal (version 1.2.1)

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, fail = 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.
fail
logical, if TRUE, differences will cause an error. Ignored if test = FALSE.

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 message is returned.

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

References

Vignette with a more detailed description: http://www.seasonal.website/seasonal.html Comprehensive list of R examples from the X-13ARIMA-SEATS manual: http://www.seasonal.website/examples.html 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