uninstall.R {installr} | R Documentation |
Uninstall an R version
Description
Choose an R version to uninstall via a menubar. By default, the function allows the user to pick an R version to uninstall from a list. Also, the function can be called with using "r_version", where multiple R versions can be supplied and all will be uninstalled.
Usage
uninstall.R(r_version, GUI = TRUE)
Arguments
r_version |
a character vector for R versions to uninstall (the format is of the style: "2.15.3"). default is empty - resulting in a prompt message asking the user what to do. |
GUI |
If asking the user which R version to uninstall, should the GUI be used? (default is TRUE) |
Value
the output of system running the uninstaller
See Also
Examples
## Not run:
uninstall.R() # choose an R version to uninstall
uninstall.R("2.15.3") # will uninstall R 2.15.3
uninstall.R(c("2.15.3", "2.14.0")) # will uninstall two R versions (if both exists)
uninstall.R("10.10.0") # would pop up the menu options (until R 10.10.0 will be released :D )
## End(Not run)
[Package installr version 0.23.4 Index]