Re: [R] Menus - best practices?

2012-05-22 Thread Greg Snow
The tkexamp function in the TeachingDemos package can be used to create a tcltk based GUI for your own functions. On Fri, May 18, 2012 at 5:45 PM, Noah Silverman noahsilver...@ucla.edu wrote: Hello, I need to design a fairly simple front-end for someone to use an R script system that I've

Re: [R] Menus - best practices?

2012-05-19 Thread peter dalgaard
On May 19, 2012, at 01:45 , Noah Silverman wrote: Hello, I need to design a fairly simple front-end for someone to use an R script system that I've built. My thought was to just use the text based menus available in the base R package, perhaps in some kind of loop. How have other

Re: [R] Menus - best practices?

2012-05-19 Thread Liviu Andronic
On Sat, May 19, 2012 at 9:31 AM, peter dalgaard pda...@gmail.com wrote: Best practice is a bit contentious, but several people have found that the tcltk package offers a path of low resistance. Additionally check gWidgets. Liviu __

[R] Menus - best practices?

2012-05-18 Thread Noah Silverman
Hello, I need to design a fairly simple front-end for someone to use an R script system that I've built. My thought was to just use the text based menus available in the base R package, perhaps in some kind of loop. How have other people done this? Any best practices that you can recommend?

Re: [R] Menus - best practices?

2012-05-18 Thread Rich Shepard
On Fri, 18 May 2012, Noah Silverman wrote: I need to design a fairly simple front-end for someone to use an R script system that I've built. My thought was to just use the text based menus available in the base R package, perhaps in some kind of loop. Noah, ncurses will do all you want in

Re: [R] Menus - best practices?

2012-05-18 Thread Noah Silverman
Thanks Rich, I was looking for something I could run *inside* of R, as part of my R script. How are you using ncurses? -- Noah Silverman UCLA Department of Statistics 8117 Math Sciences Building Los Angeles, CA 90095 On May 18, 2012, at 5:14 PM, Rich Shepard wrote: On Fri, 18 May 2012, Noah