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. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.