How can I set a specific CRAN mirror permanently in R? I want to set it permanently in my laptop so that when I do install.packages, it won't ask me again which mirror to choose.
|
feedback
|
|
You can set repos in your .Rprofile to restore your choice every time you start R Edit: to be more precise: Add
to your .Rprofile Alternatively, you check your Rprofile.site (in the directory /your-R-installation/etc/ , eg R-2.14.0/etc). There you see following lines commented out :
So remove the comment marks and change "http://my.local.cran" to the correct website. | |||||||
feedback
|
Rprofilefile. On *NIX platforms, it's located in/usr/lib/R/library/base/R/Rprofile. Just be careful... and note that local.Rprofilesettings take precedence. – aL3xa Dec 12 '11 at 14:21?Startupfor the really gory details of where `.Rprofile files can be located and which take precedence. – Josh O'Brien Dec 12 '11 at 14:42.Firstand.Lastobjects. – aL3xa Dec 12 '11 at 14:54