Re: [Rd] Graphical User Interface (GUI)

2015-07-08 Thread Michael Lawrence
On Wed, Jul 8, 2015 at 11:43 AM, vthokienj  wrote:
> I'd like to create a user interface for my R code and have only seen mostly
> older posts on the subject.
> I'm not looking for an IDE for development, but something that the end user
> of the software would use.
> So something that would involve displaying buttons, listboxes, and drop down
> menus to a user that will facilitate various actions.
>
> I doubt there is anything Visual Studio-like that provides a toolbox to drag
> and drop,

Actually, there are a couple of options. QtDesigner is such a tool,
and its output is compatible with the qtbase R package. There's also
Glade, which is compatible with RGtk2.

> but what would be the simplest way to approach designing an
> interface? The basic goal of my program is to have the user enter data which
> would be saved to a database. Then, through the interface, various buttons
> will draw various graphs on that data.
>
> Thanks in advance for any help on this.
>
>
>
> --
> View this message in context: 
> http://r.789695.n4.nabble.com/Graphical-User-Interface-GUI-tp4709583.html
> Sent from the R devel mailing list archive at Nabble.com.
>
> __
> R-devel@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] Graphical User Interface (GUI)

2015-07-08 Thread vthokienj
Thanks all for the replies both here and in email. It seems like Shiny is
what I am looking for, I guess I just ignored anything R Studio thinking
they only made an IDE. I'm going to look into the other suggestions as well.
I've only been using R for a few months but look forward to trying these
out. 





--
View this message in context: 
http://r.789695.n4.nabble.com/Graphical-User-Interface-GUI-tp4709583p4709601.html
Sent from the R devel mailing list archive at Nabble.com.

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] Graphical User Interface (GUI)

2015-07-08 Thread John Fox
Dear vthokienj,

One approach would be to write a plug-in package for the Rcmdr package. An
advantage is that data input (at least of rectangular data sets), data
management, etc., are already taken care of. There are about 40 such
plug-ins currently on CRAN, most with names beginning with "RcmdrPlugin.". 

The GUI toolkit that's used is Tcl/Tk and the tcltk package is part of the
standard R distribution. Some convenience functions for creating dialogs are
exported by the Rcmdr package for use in plug-ins. A couple of relevant --
if somewhat dated -- articles are in R News <
http://www.r-project.org/doc/Rnews/Rnews_2007-3.pdf > and the Journal of
Statistical Software .

Best,
 John

---
John Fox, Professor
McMaster University
Hamilton, Ontario, Canada
http://socserv.socsci.mcmaster.ca/jfox/




> -Original Message-
> From: R-devel [mailto:r-devel-boun...@r-project.org] On Behalf Of
> vthokienj
> Sent: July-08-15 2:43 PM
> To: r-devel@r-project.org
> Subject: [Rd] Graphical User Interface (GUI)
> 
> I'd like to create a user interface for my R code and have only seen
> mostly
> older posts on the subject.
> I'm not looking for an IDE for development, but something that the end
> user
> of the software would use.
> So something that would involve displaying buttons, listboxes, and drop
> down
> menus to a user that will facilitate various actions.
> 
> I doubt there is anything Visual Studio-like that provides a toolbox to
> drag
> and drop, but what would be the simplest way to approach designing an
> interface? The basic goal of my program is to have the user enter data
> which
> would be saved to a database. Then, through the interface, various
> buttons
> will draw various graphs on that data.
> 
> Thanks in advance for any help on this.
> 
> 
> 
> --
> View this message in context: http://r.789695.n4.nabble.com/Graphical-
> User-Interface-GUI-tp4709583.html
> Sent from the R devel mailing list archive at Nabble.com.
> 
> __
> R-devel@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel


---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] Graphical User Interface (GUI)

2015-07-08 Thread Peter Meissner
Have a look at  gWidgets (John Verzani).

Best, Peter
Am 08.07.2015 22:29 schrieb "Dean Attali" :

> Isn't this exactly what Shiny is meant for?
> http://shiny.rstudio.com/
>
> ---
> http://deanattali.com
>
> On 8 July 2015 at 11:43, vthokienj  wrote:
>
> > I'd like to create a user interface for my R code and have only seen
> mostly
> > older posts on the subject.
> > I'm not looking for an IDE for development, but something that the end
> user
> > of the software would use.
> > So something that would involve displaying buttons, listboxes, and drop
> > down
> > menus to a user that will facilitate various actions.
> >
> > I doubt there is anything Visual Studio-like that provides a toolbox to
> > drag
> > and drop, but what would be the simplest way to approach designing an
> > interface? The basic goal of my program is to have the user enter data
> > which
> > would be saved to a database. Then, through the interface, various
> buttons
> > will draw various graphs on that data.
> >
> > Thanks in advance for any help on this.
> >
> >
> >
> > --
> > View this message in context:
> >
> http://r.789695.n4.nabble.com/Graphical-User-Interface-GUI-tp4709583.html
> > Sent from the R devel mailing list archive at Nabble.com.
> >
> > __
> > R-devel@r-project.org mailing list
> > https://stat.ethz.ch/mailman/listinfo/r-devel
> >
>
> [[alternative HTML version deleted]]
>
> __
> R-devel@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel
>

[[alternative HTML version deleted]]

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] Graphical User Interface (GUI)

2015-07-08 Thread Dean Attali
Isn't this exactly what Shiny is meant for?
http://shiny.rstudio.com/

---
http://deanattali.com

On 8 July 2015 at 11:43, vthokienj  wrote:

> I'd like to create a user interface for my R code and have only seen mostly
> older posts on the subject.
> I'm not looking for an IDE for development, but something that the end user
> of the software would use.
> So something that would involve displaying buttons, listboxes, and drop
> down
> menus to a user that will facilitate various actions.
>
> I doubt there is anything Visual Studio-like that provides a toolbox to
> drag
> and drop, but what would be the simplest way to approach designing an
> interface? The basic goal of my program is to have the user enter data
> which
> would be saved to a database. Then, through the interface, various buttons
> will draw various graphs on that data.
>
> Thanks in advance for any help on this.
>
>
>
> --
> View this message in context:
> http://r.789695.n4.nabble.com/Graphical-User-Interface-GUI-tp4709583.html
> Sent from the R devel mailing list archive at Nabble.com.
>
> __
> R-devel@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel
>

[[alternative HTML version deleted]]

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel