powered by
Produces a plot of the level, slope and seasonal components from an ETS model.
# S3 method for ets plot(x, ...)# S3 method for ets autoplot(object, range.bars = NULL, ...)
# S3 method for ets autoplot(object, range.bars = NULL, ...)
None. Function produces a plot
Object of class “ets”.
Other plotting parameters to affect the plot.
Object of class “ets”. Used for ggplot graphics (S3 method consistency).
Logical indicating if each plot should have a bar at its right side representing relative size. If NULL, automatic selection takes place.
Rob J Hyndman & Mitchell O'Hara-Wild
autoplot will produce an equivalent plot as a ggplot object.
autoplot
ets
fit <- ets(USAccDeaths) plot(fit) plot(fit,plot.type="single",ylab="",col=1:3) library(ggplot2) autoplot(fit)
Run the code above in your browser using DataLab