seasonal (version 1.2.1)

out: Display X-13ARIMA-SEATS Output

Description

The out function shows the full content of the X-13ARIMA-SEATS output. If you are using the HTML version of X-13 (recommended), the output is displayed in the browser. If you are using the non-HTML version, the output is shown in the console.

Usage

out(x, browser = getOption("browser"), line = 1, n = 100, search = NULL,
  ...)

Arguments

x
an object of class "seas".
browser
browser to be used, passed on to browseURL (ignored in the non-HTML version).
line
starting line of the content (ignored in the HTML version).
n
number of lines to show on a page (ignored in the HTML version).
search
regular expression chracter string. If specified, the content is searched for the first occurence (ignored in the HTML version).
...
additional spec-arguments options sent to X-13ARIMA-SEATS during re-evaluation. See seas.

Value

  • displays the output as a side effect.

Details

To keep the size of "seas" objects small, seas does not save the output by default. Instead, out re-evaluates the model.

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) 
out(m) 
out(m, automdl.print = "autochoicemdl")

arguments ignored in the HTML version
out(m, search = "regARIMA model residuals")
out(m, search = "Normality Statistics for regARIMA")

Run the code above in your browser using DataLab