plot.ets: Plot components from ETS model

View source: R/ets.R

plot.etsR Documentation

Plot components from ETS model

Description

Produces a plot of the level, slope and seasonal components from an ETS model.

Usage

## S3 method for class 'ets'
plot(x, ...)

## S3 method for class 'ets'
autoplot(object, range.bars = NULL, ...)

Arguments

x

Object of class “ets”.

...

Other plotting parameters to affect the plot.

object

Object of class “ets”. Used for ggplot graphics (S3 method consistency).

range.bars

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

Details

autoplot will produce an equivalent plot as a ggplot object.

Value

None. Function produces a plot

Author(s)

Rob J Hyndman & Mitchell O'Hara-Wild

See Also

ets

Examples


fit <- ets(USAccDeaths)
plot(fit)
plot(fit,plot.type="single",ylab="",col=1:3)

library(ggplot2)
autoplot(fit)


robjhyndman/forecast documentation built on April 20, 2024, 4:52 a.m.