I created web application using shiny package in R Studio.
I want to open that web app in browser without opening(displaying) R Studio.
Is this possible?
I tried batch file but only RStudio is opening. Code for batch file is below;
START " " "C:\Program Files\RStudio\bin\rstudio"
[library(shiny)]
[runApp("E:\\Other stuffs/R Shiny learning/mywebapp")]
I want to pass
library(shiny)]
runApp("E:\Other stuffs/R Shiny learning/mywebapp")
this command to R console.
Could you please help me.
Thanks in advance