Re: [R] Building Custom GUIs for R

2011-05-20 Thread Greg Snow
ject: [R] Building Custom GUIs for R > > I am looking to build simple GUIs based on the R codes I have. The main > objective is to hide the scary R codes from non-programming people and > make > it easier for them to try out different inputs. > > For example, > > 1. The G

Re: [R] Building Custom GUIs for R

2011-05-20 Thread Jonathan Gabris
If you want a GUI that only communicates with R, and is not created within R, you can use Qt. Startup R.exe using a QProcess and send ready formatted commands to the background R.exe whan you activate a control (button, slider,..) I find this works well if you want a "just click on the button

Re: [R] Building Custom GUIs for R

2011-05-20 Thread Bert Gunter
... and yet another, on Windows ONLY and with limited functionality -- which nevertheless sufficed for my unsophisticated needs -- is to use several built-in R functions in the utils package (the win... ones courtesy of Duncan Murdoch) that access native Windows functionality. See ?winMenuAdd ?sel

Re: [R] Building Custom GUIs for R

2011-05-20 Thread vioravis
Thanks everyone. I will try out the packages you have mentioned. Ravi -- View this message in context: http://r.789695.n4.nabble.com/Building-Custom-GUIs-for-R-tp3537794p3538539.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r

Re: [R] Building Custom GUIs for R

2011-05-20 Thread Smith, Dale
.org Subject: Re: [R] Building Custom GUIs for R On Fri, May 20, 2011 at 7:52 AM, vioravis wrote: > Are there any tools currently available that enable us build GUIs??? (MATLAB > has a GUI builder that enables the users build custom GUIs). Another option nobody has mentioned yet is to make it a

Re: [R] Building Custom GUIs for R

2011-05-20 Thread Barry Rowlingson
On Fri, May 20, 2011 at 7:52 AM, vioravis wrote: > Are there any tools currently available that enable us build GUIs??? (MATLAB > has a GUI builder that enables the users build custom GUIs). Another option nobody has mentioned yet is to make it a web-based system, and generate your dialogs usin

Re: [R] Building Custom GUIs for R

2011-05-20 Thread jverzani
vioravis gmail.com> writes: > > I am looking to build simple GUIs based on the R codes I have. The main > objective is to hide the scary R codes from non-programming people > and make it easier for them to try out different inputs. > ... snip ... > Are there any tools currently available th

Re: [R] Building Custom GUIs for R

2011-05-20 Thread Jonathan Daily
Some good tcltk examples can be found online [1]. I have also found the fgui package on CRAN [2], though I have not actually used it yet. [1] http://bioinf.wehi.edu.au/~wettenhall/RTclTkExamples/ [2] http://cran.cnr.berkeley.edu/web/packages/fgui/index.html On Fri, May 20, 2011 at 2:52 AM, viorav

Re: [R] Building Custom GUIs for R

2011-05-20 Thread Jonathan Gabris
: viernes, 20 de mayo de 2011 8:52 Para: r-help@r-project.org Asunto: [R] Building Custom GUIs for R I am looking to build simple GUIs based on the R codes I have. The main objective is to hide the scary R codes from non-programming people and make it easier for them to try out different inputs. For

Re: [R] Building Custom GUIs for R

2011-05-20 Thread Rubén Roa
r-help-boun...@r-project.org > [mailto:r-help-boun...@r-project.org] En nombre de vioravis > Enviado el: viernes, 20 de mayo de 2011 8:52 > Para: r-help@r-project.org > Asunto: [R] Building Custom GUIs for R > > I am looking to build simple GUIs based on the R codes I > hav

[R] Building Custom GUIs for R

2011-05-20 Thread vioravis
I am looking to build simple GUIs based on the R codes I have. The main objective is to hide the scary R codes from non-programming people and make it easier for them to try out different inputs. For example, 1. The GUI will have means to upload a csv file which will be read by the R code. 2.