forecast (version 8.22.0)

plot.bats: Plot components from BATS model

Description

Produces a plot of the level, slope and seasonal components from a BATS or TBATS model. The plotted components are Box-Cox transformed using the estimated transformation parameter.

Usage

# S3 method for bats
plot(x, main = "Decomposition by BATS model", ...)

# S3 method for tbats autoplot(object, range.bars = FALSE, ...)

# S3 method for bats autoplot(object, range.bars = FALSE, ...)

# S3 method for tbats plot(x, main = "Decomposition by TBATS model", ...)

Value

None. Function produces a plot

Arguments

x

Object of class “bats/tbats”.

main

Main title for plot.

...

Other plotting parameters passed to par.

object

Object of class “bats/tbats”.

range.bars

Logical indicating if each plot should have a bar at its right side representing relative size. If NULL, automatic selection takes place.

Author

Rob J Hyndman

See Also

bats,tbats

Examples

Run this code

if (FALSE) {
fit <- tbats(USAccDeaths)
plot(fit)
autoplot(fit, range.bars = TRUE)}

Run the code above in your browser using DataLab