Build Interactive Web App. with Shiny R
Jul 21, 2020
There are few ways you can install package in R using RStudio. One of them — by running the install command in the Console
install.packages(“shiny”)

In my case, Shiny R server will be using port 6842. I can launch my project on the localhost URL : http://127.0.0.1:6842
Using the built-in example :
library(shiny)
runExample("01_hello")
