Re: [R] Could not find lmer function in {Matrix} package

2007-06-20 Thread Martin Maechler
 SB == Steve Brady [EMAIL PROTECTED]
 on Tue, 19 Jun 2007 11:59:15 -0400 writes:

SB I am having trouble calling the lmer function in the {Matrix}  

SB package.  I first installed and loaded {Matrix} as follows:

 install.packages(Matrix)
 library(Matrix)

SB The package loaded successfully, however when I attempted to call  
SB lmer, I received the following message:

SB Error: could not find function lmer

SB I also tried:

SB  ?lmer

SB which produced no search results.

And who told you  lmer() was in the Matrix package ?
It's in the lme4 package, and --- conceptually has always been there --
Only for some maintenance convenience (C code shared between
lme4 and Matrix) reasons, lmer() has actually been in the Matrix
package for some time in the past, 
however you were always supposed to say

require(lme4)  or  library(lme4)

to get to lmer.

Regards,
Martin

SB I have attempted these actions in both MacOSx R Versions 2.4.1 and  
SB 2.5.0.  I have also tried this in Version 2.5.1. beta on a Windows  
SB machine.

SB Thanks in advance for any suggestions.

SB Steve

__
R-help@stat.math.ethz.ch 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] Could not find lmer function in {Matrix} package

2007-06-19 Thread Steve Brady
I am having trouble calling the lmer function in the {Matrix}  
package.  I first installed and loaded {Matrix} as follows:

  install.packages(Matrix)
  library(Matrix)

The package loaded successfully, however when I attempted to call  
lmer, I received the following message:

Error: could not find function lmer

I also tried:

 ?lmer

which produced no search results.

I have attempted these actions in both MacOSx R Versions 2.4.1 and  
2.5.0.  I have also tried this in Version 2.5.1. beta on a Windows  
machine.

Thanks in advance for any suggestions.

Steve

Steven P. Brady, M.E.Sc (2007)
School of Forestry  Environmental Studies
Yale University
http://www.cbc.yale.edu/people/skelly/steveb.html




[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch 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] Could not find lmer function in {Matrix} package

2007-06-19 Thread Steve Brady
That did the trick.  Thanks.

Steve
On Jun 19, 2007, at 12:10 PM, David Barron wrote:

 It's now in the lme4 package.

 On 19/06/07, Steve Brady [EMAIL PROTECTED] wrote:
 I am having trouble calling the lmer function in the {Matrix}
 package.  I first installed and loaded {Matrix} as follows:

   install.packages(Matrix)
   library(Matrix)

 The package loaded successfully, however when I attempted to call
 lmer, I received the following message:

 Error: could not find function lmer

 I also tried:

  ?lmer

 which produced no search results.

 I have attempted these actions in both MacOSx R Versions 2.4.1 and
 2.5.0.  I have also tried this in Version 2.5.1. beta on a Windows
 machine.

 Thanks in advance for any suggestions.

 Steve
 
 Steven P. Brady, M.E.Sc (2007)
 School of Forestry  Environmental Studies
 Yale University
 http://www.cbc.yale.edu/people/skelly/steveb.html




 [[alternative HTML version deleted]]

 __
 R-help@stat.math.ethz.ch 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.



 -- 
 =
 David Barron
 Said Business School
 University of Oxford
 Park End Street
 Oxford OX1 1HP

__
R-help@stat.math.ethz.ch 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] Could not find lmer function in {Matrix} package

2007-06-19 Thread David Barron
It's now in the lme4 package.

On 19/06/07, Steve Brady [EMAIL PROTECTED] wrote:
 I am having trouble calling the lmer function in the {Matrix}
 package.  I first installed and loaded {Matrix} as follows:

   install.packages(Matrix)
   library(Matrix)

 The package loaded successfully, however when I attempted to call
 lmer, I received the following message:

 Error: could not find function lmer

 I also tried:

  ?lmer

 which produced no search results.

 I have attempted these actions in both MacOSx R Versions 2.4.1 and
 2.5.0.  I have also tried this in Version 2.5.1. beta on a Windows
 machine.

 Thanks in advance for any suggestions.

 Steve
 
 Steven P. Brady, M.E.Sc (2007)
 School of Forestry  Environmental Studies
 Yale University
 http://www.cbc.yale.edu/people/skelly/steveb.html




 [[alternative HTML version deleted]]

 __
 R-help@stat.math.ethz.ch 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.



-- 
=
David Barron
Said Business School
University of Oxford
Park End Street
Oxford OX1 1HP

__
R-help@stat.math.ethz.ch 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] Could not find lmer function in {Matrix} package

2007-06-19 Thread John Kane
I don't think it's there.  I have had a look at the
ref doc and lmer does not show up.  

Have a look at
http://finzi.psych.upenn.edu/R/Rhelp02a/archive/67904.html

It looks like it's in the lme4 package now.


--- Steve Brady [EMAIL PROTECTED] wrote:

 I am having trouble calling the lmer function in the
 {Matrix}  
 package.  I first installed and loaded {Matrix} as
 follows:
 
   install.packages(Matrix)
   library(Matrix)
 
 The package loaded successfully, however when I
 attempted to call  
 lmer, I received the following message:
 
 Error: could not find function lmer
 
 I also tried:
 
  ?lmer
 
 which produced no search results.
 
 I have attempted these actions in both MacOSx R
 Versions 2.4.1 and  
 2.5.0.  I have also tried this in Version 2.5.1.
 beta on a Windows  
 machine.
 
 Thanks in advance for any suggestions.
 
 Steve
 
 Steven P. Brady, M.E.Sc (2007)
 School of Forestry  Environmental Studies
 Yale University
 http://www.cbc.yale.edu/people/skelly/steveb.html
 
 
 
 
   [[alternative HTML version deleted]]
 
 __
 R-help@stat.math.ethz.ch 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@stat.math.ethz.ch 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.