search for: cm_shared_lib_path

Displaying 2 results from an estimated 2 matches for "cm_shared_lib_path".

2017 Nov 23
5
libPaths displays truncated path?
...nal packages on the NFS server. So that R can find these additional packages, I have the following in the site-wide Rprofile v <- R.Version() base_path = "/cm/shared/apps/R/site-library/" major_minor_version = paste(v["major"],v["minor"],sep=".") cm_shared_lib_path = paste0(base_path,major_minor_version) full_cm_shared_lib_path <- c(file.path(chartr("\\", "/", R.home()), "site-library"), cm_shared_lib_path) .libPaths( c( .libPaths(), full_cm_shared_lib_path ) ) Thus, when I start R I get this: > full_cm_shared_lib_p...
2017 Nov 23
0
libPaths displays truncated path?
...> So that R can find these additional packages, I have the following in > the site-wide Rprofile > > v <- R.Version() > base_path = "/cm/shared/apps/R/site-library/" > major_minor_version = paste(v["major"],v["minor"],sep=".") > cm_shared_lib_path = paste0(base_path,major_minor_version) > full_cm_shared_lib_path <- c(file.path(chartr("\\", "/", R.home()), "site-library"), cm_shared_lib_path) > .libPaths( c( .libPaths(), full_cm_shared_lib_path ) ) > > Thus, when I start R I get this: > >...