

Īfter checking it out, use the escape key to stop the shiny app.

If you are in Rstudio your web application should have been opened automatically, however you can also view these with any modern web browser by going to the web address listed after calling runExample(). In simplified terms these html pages are simply being hosted by your own computer. What shiny is actually doing here is converting the R code to html pages and serving those on a random port using the ip address 127.0.0.1 which is localhost on most computers. # install and load shiny install.packages ( "shiny" ) library ( shiny ) # list the built in shiny app examples runExample () # run one of these examples in Rstudio runExample ( "06_tabsets" )
