Hi,
Crosstalk looks very cool and I had a general question. If I have data sets that are of different granularities (e.g summary level vs detail)...I assume to use crosstalk I would need to merge them to a single dataframe to prep for crosstalk? For instance, if I have a dataframe with values for each DATE but on any given DATE I have a set of N "Events" I would ideally like to show those events filtered as I filter on DATE. One approach I was thinking is to use tidyr to merge/spread the data so that each "Event" is a column but I could easily see this going out of control.
So the question is, if I have a Shiny Dashboard with 2 grains of data, is there a way to integrate both to crosstalk somehow? Perhaps 2 sets of CROSSTALK widgets and a Shiny Reactive which joins the two? Or is there a more elegant way to do this. Could I perhaps use a List within a Dataframe?
Any advice is appreciated.