plot.bats {forecast} | R Documentation |
Produces a plot of the level, slope and seasonal components from a BATS or TBATS model.
## S3 method for class 'bats' plot(x, main="Decomposition by BATS model", ...) ## S3 method for class 'tbats' plot(x, main="Decomposition by TBATS model", ...)
x |
Object of class “ets”. |
main |
Main title for plot. |
... |
Other plotting parameters passed to |
None. Function produces a plot
Rob J Hyndman
## Not run: fit <- tbats(USAccDeaths) plot(fit) ## End(Not run)