@mine Say I have 5 different R scripts (5 different .R files) that I use to do my analysis. Each file does something different on a different database. Also, note that each file is using a shinyApp and produces the output charts in a web browser. Currently, as I am the only user of these script files, I give my inputs into the .R files and run them to generate the charts.
I want to change this in the coming future as I will be having different users (who don't have any R coding experience) and would like to work directly from a webpage. They can chose the app they need (from the 5 apps that I have developed) and then basically, give the inputs (such as the database, tables etc) and click the submit button to see all the charts. I am currently entering all the input details manually inside my R script.
So basically, I am envisioning the setup to be like two sided. First one would be like a gallery of all the apps that I have (currently 5 apps, which will increase in future) and then once the app is selected, then a new window will open where the there will be a UI for user to select the inputs and once the user selects the inputs and clicks the submit button, the third window should open where there will be different plots based on the inputs given by the user.
I am wondering if RStudio / Shiny can do this?