4

I wrote a simple R program and want to share it with my office. Most people in my office are not familiar with R and I imagine it could be kind of confusing for them to install R and all the required packages.

Is there an easy way I can share an R script that can take user inputs & share output that doesn't require R installation on the user's end? I'm thinking something like Shiny, but for desktop use.

NBC
  • 1,606
  • 4
  • 18
  • 31

1 Answers1

1

Your users can run R in an R jupyter notebook that you have set up in advance on some server. Then it's not a "desktop app" per se but it's going to look like it is running in their local web browser like Firefox or Chrome etc. Sharing R code you wrote will work excellently this way.

Geoffrey Anderson
  • 1,534
  • 17
  • 25