Fetches the latest (not development!) R version
install.R(page_with_download_url = "https://cran.rstudio.com/bin/windows/base/",
pat = "R-[0-9.]+.+-win\\.exe", to_checkMD5sums = TRUE,
keep_install_file = FALSE, download_dir = tempdir(),
silent = FALSE, ...)
URL from which the latest stable version of R can be downloaded from.
the pattern of R .exe file to download
Should we check that the new R installation has the files we expect it to (by checking the MD5 sums)? default is TRUE. It assumes that the R which was isntalled is the latest R version.
If TRUE - the installer file will not be erased after it is downloaded and run.
A character of the directory into which to download the file. (default is tempdir())
If TRUE - enables silent installation mode.
extra parameters to pass to install.URL
TRUE/FALSE - was the installation of R successful or not.
If you are not sure if you need to update R or not, It is better to use updateR for updating R, since it includes more options. But in case you wish to only install R, with no other steps taken (for example, taking care of your old packages), then you can use install.R()
See the install.Rdevel function for installing the latest R-devel version.