Re: [R] Unable to load 'doBy' package

2009-10-06 Thread cls59


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.


Re: [R] Unable to load 'doBy' package

2009-10-06 Thread Lauren Szathmary
Thanks!  I installed the Hmisc package and doBy loaded with no problem.

On Wed, Oct 7, 2009 at 1:08 AM, joris meys  wrote:

> Hi Lauren,
>
> from the error message it looks like you have a problem with the
> package "Hmisc". doBy is dependent on that one. Can you check whether
> Hmisc is installed in your R version? For me, doBy loads without
> problems.
>
> On Tue, Oct 6, 2009 at 12:18 PM, 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'
> >
> > 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]]
> >
> > __
> > 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.
> >
>

[[alternative HTML version deleted]]

__
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.


Re: [R] Unable to load 'doBy' package

2009-10-06 Thread joris meys
Hi Lauren,

from the error message it looks like you have a problem with the
package "Hmisc". doBy is dependent on that one. Can you check whether
Hmisc is installed in your R version? For me, doBy loads without
problems.

On Tue, Oct 6, 2009 at 12:18 PM, 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'
>
> 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]]
>
> __
> 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.
>

__
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.