Learn R Programming

seasonal (version 0.40.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 selected spec-argument options.

Usage

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

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.

Value

  • 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