Hi all, I am trying to load the doBy package, and I am getting the following error:> library(doBy)Error in loadNamespace(i[[1L]], c(lib.loc, .libPaths())) : there is no package called 'Hmisc' Error: package/namespace load failed for 'doBy' I tried updating R to the current version (2.9.2) and installing the most recent version of the doBy package (4.0.2), and the error remained the same. I also tried loading the package by going to my Package Manager window and clicking the box to load 'doBy', but that didn't work either. My other packages (e.g., lattice, chron, etc.) are loading normally with no problems. If you have any suggestions for how I can get doBy to load, please let me know. Thanks very much, Lauren [[alternative HTML version deleted]]
Hi all, I am trying to load the doBy package, and I am getting the following error:> library(doBy)Error in loadNamespace(i[[1L]], c(lib.loc, .libPaths())) : there is no package called 'Hmisc' Error: package/namespace load failed for 'doBy' I tried updating R to the current version (2.9.2) and installing the most recent version of the doBy package (4.0.2), and the error remained the same. I also tried loading the package by going to my Package Manager window and clicking the box to load 'doBy', but that didn't work either. My other packages (e.g., lattice, chron, etc.) are loading normally with no problems. If you have any suggestions for how I can get doBy to load, please let me know. Thanks very much, Lauren [[alternative HTML version deleted]]
Lauren Szathmary wrote:> > Hi all, > > I am trying to load the doBy package, and I am getting the following > error: > >> library(doBy) > Error in loadNamespace(i[[1L]], c(lib.loc, .libPaths())) : > there is no package called 'Hmisc' > Error: package/namespace load failed for 'doBy' > >This error message means that doBy depends on the Hmisc package, which is not installed. To ensure that a package is installed along with it's dependencies, install packages using the dependencies = T option: install.packages('doBy', dependencies = T ) Hope this helps! -Charlie ----- Charlie Sharpsteen Undergraduate Environmental Resources Engineering Humboldt State University -- View this message in context: http://www.nabble.com/Unable-to-load-%27doBy%27-package-tp25768101p25776865.html Sent from the R help mailing list archive at Nabble.com.