Update the version of RStudio R?

3

The version of R I have installed is outdated. What is the procedure for updating R considering that I use RStudio in Windows?

    
asked by anonymous 06.01.2016 / 22:19

2 answers

1

Updating the version of R for those who use it in Windows is very simple, as stated above. I'm not sure if you're thinking of upgrading or reinstalling, but you can check out this tutorial with all the tips. RStudio also provides a free desktop version in its website .

    
19.01.2016 / 14:24
2

There are a number of ways, one of which is using the installr package and applying the updateR() function:

library (installr)
updateR() 

More information can be found at this tutorial .

    
06.01.2016 / 22:27