Re: [R] Packaged exe and Shiny

2018-09-23 Thread Eric Berger
Hi Kevin, I did something along these lines using shiny and I had a good experience with it. You would require a server (virtual or physical) to run the shiny-server program. This approach is particularly suitable if your target users do not know (or use) R. If you go down this route I also suggest

Re: [R] Packaged exe and Shiny

2018-09-10 Thread Jeff Newmiller
IMO the best short answer is don't target making an install package or msi at all... the obstacles are quite significant. Aim for building most of your capabilities in packages and having people install them. You can setup an in-house package repo to simplify this and give them a startup script

Re: [R] Packaged exe and Shiny

2018-09-10 Thread Jim Lemon
Hi Kevin, It might be just as easy to write R scripts that would do basic analyses. Users could "source" these scripts in an R session or from the command line. The scripts would be much more compact than the .exe files that you describe. Jim On Tue, Sep 11, 2018 at 8:06 AM Kevin Kowitski via R-h

[R] Packaged exe and Shiny

2018-09-10 Thread Kevin Kowitski via R-help
Hey Everyone,    I do not know if this topic has been covered, I'm sure it must have, but is there a good environment for packaging R code into a distributed exe. (which includes all of the required libraries, etc.)?  I have seen that Shiny is a good GUI / Web library for sharing R programs, b