Distributing R scripts to non-coders

206 Views Asked by At

I work as the single data scientist in a company, and I have around 15 or so functions that generates an Excel sheet with various information in - and this number will increase in the future. These sheets are used by relatively many people in the company, but only I can run them, since none of them knows R, and it is not really an option to just teach them how to run functions, since many of them have quite limited IT skills.

For the sake of the example, lets assume we have a script as:

library(openxlsx)
Example_function <- function(foo){
    wb <- createWorkbook()
    addWorksheet(wb, "Sheet1")
    writeData(wb, "Sheet1", bar)
    saveWorkbook(wb, "bar.xlsx")
}

My idea was to have some kind og drag and drop system, or something clickable with the functions and arguments, that they want to use. I have not been able to find such a software, that can do this in a satisfying way. Any suggestions are welcome.

0

There are 0 best solutions below