Im trying to install an R package from Github using DevTools as so:
library(devtools)
install_github("jeffbhasin/goldmine")
install_github("jeffbhasin/methylaction")
Problem is, Im using a shared HPC and need to install the packages in a specific directory. I tried doing the following but it didn't work:
install_github("jeffbhasin/goldmine", lib="/mydir")
Any ideas?