autoplot.tbl_ts {fabletools} | R Documentation |
Plot time series from a tsibble
Description
Produces a time series plot of one or more variables from a tsibble. If the tsibble contains a multiple keys, separate time series will be identified by colour.
Usage
## S3 method for class 'tbl_ts'
autoplot(object, .vars = NULL, ...)
## S3 method for class 'tbl_ts'
autolayer(object, .vars = NULL, ...)
Arguments
object |
A tsibble. |
.vars |
A bare expression containing data you wish to plot. Multiple variables can be plotted using |
... |
Further arguments passed to |
Examples
library(fable)
library(tsibbledata)
library(tsibble)
tsibbledata::gafa_stock %>%
autoplot(vars(Close, log(Close)))
[Package fabletools version 0.4.2 Index]