Displaying 1 result from an estimated 1 matches for "the_directory".
2013 Feb 15
1
Remove site path from .libPaths
...y I stat R in, I put a .Rprofile file in the directory.
My default path is:
> .libPaths()
[1] "/home/rkrug/R/i686-pc-linux-gnu-library/2.15"
[2] "/usr/lib/R/site-library"
[3] "/usr/lib/R/library"
>
But I want to have it
> .libPaths()
[1] "/home/rkrug/THE_DIRECTORY/library"
[2] "/usr/lib/R/library"
>
The first part is easy:
.libPaths("/home/rkrug/THE_DIRECTORY/library")
but how can I remove the site library?
If I set
In R 15.2 under Ubuntu, started with
R --vanilla
> .libPaths()
[1] "/home/rkrug/R/i686-pc-linux-gnu-...