search for: major_minor_version

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

2017 Nov 23
5
libPaths displays truncated path?
...However, in the case of R, we use the R version provided by the OS and just install additional 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(),...
2017 Nov 23
0
libPaths displays truncated path?
...R version provided by the OS and > just install additional 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( ....