To review, here are all of the different ways in which shiny can be used to make dynamic visualizations.
Check out the flexdashboard website.
To create a new flexdashboard we will install the package flexdashboard and then load an R Markdown Template.
To load a flexdashboard template.
File > New File > R Markdown > From Template > Flex Dashboard
One more example, how to connect plots in a dashboard? This is called Brushing. Give this example from the flexdashboard examples a try.
Here is my First Shiny App in two files
And here are the links to the two files, as in the book.
To create a Shiny App in two files in R Studio.
File > New File > Shiny Web App > Mutliple File (ur.R/server.R)
Here is my First Shiny App in one file.
To create a Shiny App in two files in R Studio.
File > New File > Shiny Web App > Single File (app.R)
Alternatively, you can create an R Project containing a Shiny App in one file.
Project > New Project > New Directory > Shiny Web Application