Re: [R] User Interfaces for R

2019-01-11 Thread Ivan Krylov
On Thu, 10 Jan 2019 19:25:30 -0500 Duncan Murdoch wrote: > Eric's suggestion of Shiny is newer, and is a really well-designed > system. A fairly steep learning curve, but worth it. I understand the need for progress and I really like Shiny's API - it feels very declarative and easy to write, a

Re: [R] User Interfaces for R

2019-01-10 Thread Duncan Murdoch
On 10/01/2019 4:25 p.m., Ivan Krylov wrote: On Wed, 9 Jan 2019 14:29:22 -0500 (EST) Bernard McGarvey wrote: Can anyone point me to such an easy to use package to create GUIs for R? If you want a traditional approach, a lot of R installations have Tcl/Tk support built in (i.e. capabilities('t

Re: [R] User Interfaces for R

2019-01-10 Thread Ivan Krylov
On Wed, 9 Jan 2019 14:29:22 -0500 (EST) Bernard McGarvey wrote: > Can anyone point me to such an easy to use package to create GUIs for > R? If you want a traditional approach, a lot of R installations have Tcl/Tk support built in (i.e. capabilities('tcltk') is TRUE). This means that you can run

Re: [R] User Interfaces for R

2019-01-10 Thread Eric Berger
Shiny (from RStudio - and free) A wonderful tool. And the app is accessed via the user's browser. On Thu, Jan 10, 2019 at 4:18 PM Bernard McGarvey < mcgarvey.bern...@comcast.net> wrote: > I want to create an R application that includes a user interface where the > user inputs values etc and then

[R] User Interfaces for R

2019-01-10 Thread Bernard McGarvey
I want to create an R application that includes a user interface where the user inputs values etc and then can run R calculations and get results back on the user interface. I was hoping that an easy to use GUI package exists. Can anyone point me to such an easy to use package to create GUIs fo