Читать книгу The Big R-Book - Philippe J. S. De Brouwer - Страница 38
Hint – RStudio is free
ОглавлениеRstudio can be downloaded from https://www.rstudio.com
for free.
RStudio is also in the repositories of most Linux distributions. That means that there is no need to go to the website or RStudio, but it is possible to download R, and install it with just one line in the CLI of your OS. For example, in Debian and its derivatives, this would be:
# Note that the first 2 lines are just to make sure that # you are using the latest version of the repository. sudo apt-get update sudo apt-get upgrade # Install RStudio: sudo apt-get install rstudio
This process is very simple: provide your admin password and the script will take care of everything. Then use your preferred way to start the new software. R can be started by typing R
in the command prompt and RStudio will launch with the command rstudio
.
An important note is that RStudio will work with the latest version of R that is installed. Also when you install MRAN, RStudio will automatically load this new version.