Creation of graphical interface in R

1

I would like to know if there are any packages that allow you to create a graphic user interface with buttons, text box and everything else. And how to generate an .exe from the code in R?

    
asked by anonymous 30.10.2017 / 11:10

1 answer

1

Perhaps the " R commander ( Rcmdr ) is what you are looking for. See site and now have book . It is a graphical interface for R that has several plugins. Here, even several buttons, menus and checkboxes are translated into Portuguese. You can also find some handouts in Portuguese, ex: pdfs here and here . To install, type install.packages("Rcmdr") on the console later, to use: library(Rcmdr) . The R Commander can be used together with RStudio.

Another option, with a nice interface and other features, is to use R through RStudio and install some " RStudio addins . I suggest installing addinslist first that will allow you to find other addins .

As for creating an executable from a code, I do not know how to respond.

    
14.11.2017 / 23:04