How to automatically open an R Shiny app only in the Chrome Web Browser, while Internet Explorer is the default browser?
Example of a run.r file:
require(shiny)
folder_address = 'C:/Temp/Test/'
runApp(folder_address,launch.browser=TRUE)
which is called by a .bat file:
START /MIN "" "R.exe" CMD BATCH "C:\Temp\Test\run.r"
I want to use runApp() and not open it through RStudio.