forecast (version 7.1)

autoplot.ts: Automatically create a ggplot for time series objects

Description

autoplot takes an object of type ts or mts and creates a ggplot object suitable for usage with stat_forecast.

fortify.ts takes a ts object and converts it into a data frame (for usage with ggplot2).

Usage

"autoplot"(object, ...) "autoplot"(object, ...) "fortify"(model,data, ...)

Arguments

object
Object of class “ts” or “mts”.
model
Object of class “ts” to be converted to “data.frame”.
data
Not used (required for fortify method)
...
Other plotting parameters to affect the plot.

Value

See Also

plot.ts, fortify

Examples

Run this code
library(ggplot2)
autoplot(USAccDeaths)

lungDeaths <- cbind(mdeaths, fdeaths)
autoplot(lungDeaths)

Run the code above in your browser using DataLab