chart_pairs {RTL} | R Documentation |
Pairwise scatter plots for timeseries
Description
Plots pairwise scatter plots with the time dimension. Useful when exploring structural changes in timeseries properties for modeling.
Usage
chart_pairs(df = df, title = "Time Series Pairs Plot")
Arguments
df |
Wide data frame. |
title |
Chart title. |
Value
A plotly object. htmlwidget
Author(s)
Philippe Cote
Examples
df <- dfwide %>%
dplyr::select(date, CL01, NG01, HO01, RB01) %>%
tidyr::drop_na()
chart_pairs(df = df, title = "example")
[Package RTL version 1.3.5 Index]