Visualization of series with its lags, can be used to identify a correlation between the series and it lags
ts_lags(ts.obj, lags = 1:12, margin = 0.02, Xshare = TRUE, Yshare = TRUE, n_plots = 3)
ts.obj | A univariate time series object of a class "ts", "zoo" or "xts" |
---|---|
lags | An integer, set the lags range, by default will plot the first 12 lags |
margin | Plotly parameter, either a single value or four values (all between 0 and 1). If four values provided, the first will be used as the left margin, the second will be used as the right margin, the third will be used as the top margin, and the fourth will be used as the bottom margin. If a single value provided, it will be used as all four margins. |
Xshare | Plotly parameter, should the x-axis be shared amongst the subplots? |
Yshare | Plotly parameter, should the y-axis be shared amongst the subplots? |
n_plots | An integer, define the number of plots per row |