Re: [R] package broom

2016-01-06 Thread Nordlund, Dan (DSHS/RDA)
So, you need to download and install the mnormt package.

Dan

Daniel Nordlund, PhD
Research and Data Analysis Division
Services & Enterprise Support Administration
Washington State Department of Social and Health Services


> -Original Message-
> From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of James
> Henson
> Sent: Wednesday, January 06, 2016 9:58 AM
> To: R-help@r-project.org
> Subject: [R] package broom
> 
> Dear R community
> 
> My version is R version 3.2.3.
> The package "broom" appears to install, but it will not load.
> The error message is below.
> 
> 
> > library(broom)
> Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck =
> vI[[j]]) :
>   there is no package called ‘mnormt’
> Error: package or namespace load failed for ‘broom’
> 
> 
> Thanks,
> James F. Henson
> 
>   [[alternative HTML version deleted]]
> 
> __
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> 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 -- To UNSUBSCRIBE and more, see
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] package broom

2016-01-06 Thread Kevin E. Thorpe

On 01/06/2016 12:57 PM, James Henson wrote:

Dear R community

My version is R version 3.2.3.
The package "broom" appears to install, but it will not load.
The error message is below.



library(broom)

Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck
= vI[[j]]) :
   there is no package called ‘mnormt’
Error: package or namespace load failed for ‘broom’




It looks like you need to install the package mnormt.


Thanks,
James F. Henson

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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.




--
Kevin E. Thorpe
Head of Biostatistics,  Applied Health Research Centre (AHRC)
Li Ka Shing Knowledge Institute of St. Michael's
Assistant Professor, Dalla Lana School of Public Health
University of Toronto
email: kevin.tho...@utoronto.ca  Tel: 416.864.5776  Fax: 416.864.3016

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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] package broom

2016-01-06 Thread Sarah Goslee
That means you didn't install the dependencies when you installed
broom, and now need to install the package mnormt.

No big deal, just do what the error message tells you.

Sarah

On Wed, Jan 6, 2016 at 12:57 PM, James Henson  wrote:
> Dear R community
>
> My version is R version 3.2.3.
> The package "broom" appears to install, but it will not load.
> The error message is below.
>
>
>> library(broom)
> Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck
> = vI[[j]]) :
>   there is no package called ‘mnormt’
> Error: package or namespace load failed for ‘broom’
>
>
-- 
Sarah Goslee
http://www.numberwright.com

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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] package broom

2016-01-06 Thread Uwe Ligges
Yes, it depends on psych whoich depends on mnormt and all perfectly well 
declared, henc install.packages() should have done the job for you and 
installed the dependencies. Probably you did not use it for installing 
the package.


Best,
Uwe Ligges



On 06.01.2016 19:08, Sarah Goslee wrote:

That means you didn't install the dependencies when you installed
broom, and now need to install the package mnormt.

No big deal, just do what the error message tells you.

Sarah

On Wed, Jan 6, 2016 at 12:57 PM, James Henson  wrote:

Dear R community

My version is R version 3.2.3.
The package "broom" appears to install, but it will not load.
The error message is below.



library(broom)

Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck
= vI[[j]]) :
   there is no package called ‘mnormt’
Error: package or namespace load failed for ‘broom’




__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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.