Re: [R] Gui for R-Script

2014-05-30 Thread Jeff Newmiller
Possible, yes, anything is possible, but it your goal is to easily hide R from the users then you will probably not find the project worth the effort required. --- Jeff NewmillerThe .

Re: [R] Gui for R-Script

2014-05-30 Thread Greg Snow
There are several options for creating GUIs depending on how much control you want and how much work you are willing to put in. One simple option is the tkexamp function in the TeachingDemos package. This approach would require whoever receives your script to have R running, but then they could j

Re: [R] GUI tools for R

2013-08-16 Thread mohan . radhakrishnan
Hi, I am not the expert but I came across shiny.rstudio.org. It has Twitter bootstrap as its foundation. Others will know if there is a proper web framework that R can integrate with. Thanks.

Re: [R] GUI Development reg

2012-11-16 Thread jverzaniNWBKZ
You can use the `gWidgets` package to do this kind of thing easily enough: require(gWidgets) my_vec <- character(0) items <- state.name ## some values handler <- function(h,...) my_vec <<- svalue(h$obj) w <- gwindow() g <- ggroup(cont=w, horizontal=FALSE) ## one way to select one or more from m

Re: [R] GUI Development reg

2012-11-16 Thread Ista Zahn
Hi Vijayan, I just discovered http://www.rstudio.com/shiny/ which I think would make it pretty easy to do this. Best, Ista On Thu, Nov 15, 2012 at 1:31 AM, Vijayan Padmanabhan wrote: > Dear R Group > > I have a character vector from which I want to select a few elements and > create a new chara

Re: [R] GUI Development reg

2012-11-15 Thread Bert Gunter
Vijayan: Choose one or both from the following. 1. You don't . R is a programming language that you learn. Read the Intro to R Tutorial to start learning. 2. See the R GUI page on CRAN here: http://www.sciviews.org/_rgui/ There are several GUI's available for R and you can choose one that suits

Re: [R] GUI

2012-01-18 Thread Michael Schmidt
A couple of points. I don't know which Linux distro you are using, but in general I think it best to install R from the terminal using a CRAN mirror rather than from the Linux distro repository. The distro repositories are sometimes not completely up to date, so you will get more current updates

Re: [R] GUI

2012-01-18 Thread Milan Bouchet-Valat
Le mercredi 18 janvier 2012 à 16:23 +0100, Poul Kristensen a écrit : > How differs Rstudio from RKward? They seem to be quite similar, but their feature seats are somewhat different. I don't know RStudio enough to tell. > I am not aware of the frequence of releases in R but I think it should > be

Re: [R] GUI

2012-01-18 Thread Milan Bouchet-Valat
Le mercredi 18 janvier 2012 à 06:11 -0800, Scott Raynaud a écrit : > I'm setting up a Linux box to run R. I ususally run in a Windows > envrionment but after > reading the docs I'm not sure what to expect in terms of the front end > appearance in > Linux. Does it resemble Windows or will I need

Re: [R] GUI preferences are not saved

2012-01-14 Thread Prof Brian Ripley
On 15/01/2012 01:57, Phillip Feldman wrote: I'm running R version 2.14.1 (2011-12-22) on a 32-bit Windows machine. I've edited the GUI preferences to increase the font size, saving my preferences after doing so, but the next time I start an R session, my changes to the GUI preferences are lost.

Re: [R] GUI Experience - Box Plots

2011-06-03 Thread Vikas Garud
> A good place would be r-sig-gui. Regards > Liviu > Thanks Liviu. Subscribing to that list. Hope, it is still OK to write mails on these lists as well. Regards Vikas Garud __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-

Re: [R] GUI Experience - Box Plots

2011-06-03 Thread Liviu Andronic
On Fri, Jun 3, 2011 at 6:46 AM, Vikas Garud wrote: > Hi, > > This is to share my experience of using GUI's for using various > Quality Management/Assurance tools. > A few days back, I had I had written a mail about Box plots and > received some very good suggestions, including that for simple > sc

Re: [R] Gui immediately closes when started from command-line

2011-05-19 Thread Albert-Jan Roskam
, May 19, 2011 9:54:13 AM Subject: Re: [R] Gui immediately closes when started from command-line I had a problem similar to this I think. Though I cannot remember the symptoms. Something to to with the lack of possible interaction with the console as I was using R as a backend to a Qt interface

Re: [R] Gui immediately closes when started from command-line

2011-05-19 Thread Jonathan Gabris
I had a problem similar to this I think. Though I cannot remember the symptoms. Something to to with the lack of possible interaction with the console as I was using R as a backend to a Qt interface. To solve the problem I used the flag: '--ess' (using '--vanilla' is also a good idea) (cf Appe

Re: [R] GUI commands to call for a protein from protein data bank

2010-05-19 Thread j verzani
Amitoj S. Chopra gmail.com> writes: > > > Thank you it worked perfectly. I just needed to close the window that was > the problem. Do you know how to close the window automatically and why does > that matter? Thanks! > > Amitoj Not sure why this makes a difference, but if it does great. A

Re: [R] GUI commands to call for a protein from protein data bank

2010-05-18 Thread Amitoj S. Chopra
Thank you it worked perfectly. I just needed to close the window that was the problem. Do you know how to close the window automatically and why does that matter? Thanks! Amitoj On Tue, May 18, 2010 at 12:10 PM, Amitoj Chopra wrote: > I tried doing that and this is what I go: > > > dlg <-

Re: [R] GUI commands to call for a protein from protein data bank

2010-05-18 Thread Amitoj S. Chopra
I tried doing that and this is what I go: dlg <- aDialog(items=list( ProtienCode=stringItem("") ), OK_handler=function(.) { # . is reference to dlg object values <- .$to_R() f <- function(ProtienCode) pdb <- read.pdb(.$get_ProteinCode()) #cat("ProteinCode is",ProtienCode,"\n") do.call(f, values)

Re: [R] GUI commands to call for a protein from protein data bank

2010-05-18 Thread j verzani
Amitoj S. Chopra gmail.com> writes: > > > What I am trying to do is use GUI function, traitr, and to call for a pdb > file and save it and then display it. I want to call for it by taking it > from the user and then displaying it on the screen. I am having problems > with that. The line pdb <-

Re: [R] GUI /IDE

2010-04-01 Thread ManInMoon
Thanks Philippe, I will look at sciviews - I have never used it before. I use Rcmdr, and I find I am often selecting and running the same lines of code. I just thought if we could name them then easily "call" that region it would be useful. Cheers -- View this message in context: http://n4.na

Re: [R] GUI /IDE

2010-03-30 Thread Philippe Grosjean
Not really *named* regions, but an easy way to run portions of code quickly in SciViews-K (http://www.sciviews.org/SciViews-K): * R -> Run marked block (or Ctrl+Shift+M) runs code between two bookmarks, * R -> Run function (or Ctrl+Shift+F) runs the code of the whole current function (you may pr

Re: [R] GUI /IDE

2010-03-30 Thread Peter
Emacs allows you run regions. Not sure about naming them Peter ManInMoon wrote: Does anyone know of a gui for R that has "regions" i.e areas of code in a script that can be named and hopefully run as a section? @region Init library(whatever) myprint<-function(...){print(...)} @endregion

Re: [R] GUI developement / Matlab

2008-02-29 Thread Michael Lawrence
On Fri, Feb 29, 2008 at 6:45 AM, Antje <[EMAIL PROTECTED]> wrote: > Hi there, > > I was wondering whether there are flexible packages available with which > you > can create user interfaces? (I've read about "gWidgets"!?) gWidgets provides an easy to use API for developing GUIs in R. It's an abs

Re: [R] GUI developement / Matlab

2008-02-29 Thread Don MacQueen
Information about *graphical* user interface efforts for R, assuming that's what you meant, can be found here: http://www.sciviews.org/_rgui/ -Don At 1:45 PM +0100 2/29/08, Antje wrote: >Hi there, > >I was wondering whether there are flexible packages available with which you >can create user