I have several shiny apps that I would like to combine into a single web page. I was curious whether it is possible to do this using the navbarPage, where each tab on the navbar would call the referenced shiny app.
My pseudo code would go something like:
shinyUI(navbarPage("Multiple Shiny Apps on One Web Page",
tabPanel("shiny app 1", call(path to shiny app1) ),
tabPanel("shiny app 2", call(path to shiny app2) ),
tabPanel("shiny app 3", call(path to shiny app3) ),
)
Of course, I could always copy the code from shiny apps 1 - 3 into a single UI and server files, but I find it much cleaner and more manageable to keep my code broken out into separate files and components when possible.
Thanks,
Tal