I am running the dygraph example provided by the following RSTUDIO help page.
http://rstudio.github.io/dygraphs/gallery-synchronization.html
When I run the following code, I get individual plots for each dygraph separately.
dygraph(ldeaths, main = "All", group = "lung-deaths")
dygraph(mdeaths, main = "Male", group = "lung-deaths")
dygraph(fdeaths, main = "Female", group = "lung-deaths")
I don't get the synchronized plots as shown in the help page. The "group" variable "lung-deaths" is not part of the xts object. Please let me know if I am missing something basic here.
Thanks
Pradeep