Skip to content
Prev 1645 / 20628 Next

xtable question

This looks promising - I'll give it a go.

Cheers,

Kris

-----Original Message-----
From: dmbates at gmail.com [mailto:dmbates at gmail.com] On Behalf Of Douglas
Bates
Sent: Friday, 12 December 2008 9:54 AM
To: Kris Jamsen
Cc: Martin Henry H. Stevens; r-sig-mixed-models at r-project.org
Subject: Re: [R-sig-ME] xtable question

On Thu, Dec 11, 2008 at 4:25 PM, Kris Jamsen <kmjamsen at unimelb.edu.au>
wrote:
object
Would
An nlme object is not just an extension of an lm object.  There is a
lot more going on in nlme or lme than is the case in lm.

I expect that in creating a table from such an object you want the
table of estimates of the fixed-effects parameters, their approximate
standard errors and so on displayed as a table.  To get that table you
apply summary to the fitted model and save the result.  There is a
component of that object with a name like ttable which is the table of
fixed-effects estimates, etc.  Use

str(summary(lmeFittedModel))

to find the exact name and format.