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?
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?
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.