Learn R Programming

RTL (version 1.3.7)

chart_pairs: 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")

Value

A plotly object. htmlwidget

Arguments

df

Wide data frame. tibble

title

Chart title. character

Author

Philippe Cote

Examples

Run this code
df <- dfwide %>%
  dplyr::select(date, CL01, NG01, HO01, RB01) %>%
  tidyr::drop_na()
chart_pairs(df = df, title = "example")

Run the code above in your browser using DataLab