seasonal (version 1.8.2)

out: Display X-13ARIMA-SEATS Output

Description

The out function shows the full content of the X-13ARIMA-SEATS output in the browser. If you want to use a specific statistic in R, the udg() function is preferable.

Usage

out(x, browser = getOption("browser"), ...)

Arguments

x

an object of class "seas".

browser

browser to be used, passed on to browseURL().

...

additional spec-arguments options sent to X-13ARIMA-SEATS during re-evaluation, passed to update().

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: https://www.census.gov/ts/x13as/docX13ASHTML.pdf

See Also

seas() for the main function of seasonal.

Examples

Run this code
# NOT RUN {
# }
# NOT RUN {
m <- seas(AirPassengers)
out(m)
# customizing the output with additional elements
out(m, automdl.print = "autochoicemdl")

# }

Run the code above in your browser using DataCamp Workspace