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
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
ou
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 "RcmdrPl
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 m
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
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 us
Thanks Kevin, this indeed clarifies a bit the S3 method registration universe.
On 8 July 2015 at 15:48, Kevin Wright wrote:
> Not sure if this answers your question, but you can't unregister a method.
> See
>
> http://tolstoy.newcastle.edu.au/R/help/06/07/30791.html
>
> Kevin Wright
>
>
> On We
Thank you for your reply Martin.
Your code made me realize that S3 methods are added to the
.__S3MethodsTable__. of the package that defines the generic, not to
the ones defining the method itself.
How does things work in the case of a method from one package B
masking the one from another package