R Flexdashboard multiple plots on single tab
R Flexdashboard multiple plots on single tab I'm trying to put multiple dygraph plots on a single tab of a flexdashboard. I've tried a bunch of different options from here and from here My RMD file looks like this: --- title: "Project Dashboard" output: flexdashboard::flex_dashboard: orientation: columns vertical_layout: scroll --- # Intro {.sidebar} # Page 1 ## Column 1 {.tabset .tabset-fade data-width=850} ### Site 1 ```{r Data, echo=FALSE, fig.height=2} s <- dygraph(as.xts(df,order.by=df$DateTime), group = "NC") %>% dyOptions(drawPoints = TRUE, pointSize = 1) %>% dyAxis("y", label = "Salinity (PSU)", valueRange = c(16, 30)) %>% dyRangeSelector(height = 20) %>% dyLegend(width = 400) t <- dygraph(as.xts(df,order.by=df$DateTime), group = "NC") %>% dyOptions(drawPoints ...