You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is a minimal example where df1 and df2 share the same volume id.
When concatenating scatter_plot and ts_plot using the second chunk of code, making a selection on scatter_plot doesn't show the relevant series in the ts_plot.
I'm aware that changing the dataset of ts_plot to df2 %>% left_join(df1, by = "id") will work, but the common id column should be sufficient for the two plots to be linked.
Here is a minimal example where
df1
anddf2
share the same volumeid
.When concatenating
scatter_plot
andts_plot
using the second chunk of code, making a selection onscatter_plot
doesn't show the relevant series in thets_plot
.I'm aware that changing the dataset of
ts_plot
todf2 %>% left_join(df1, by = "id")
will work, but the commonid
column should be sufficient for the two plots to be linked.Created on 2021-04-30 by the reprex package (v2.0.0)
The text was updated successfully, but these errors were encountered: