Skip to content

Interpretation of effects

2 messages · Eiko Fried, Ben Bolker

#
Eiko Fried <torvon at ...> writes:
I'm a little confused.  Are you running the model in R or MPLUS?
If the former, could you please provide a reproducible example
( e.g. see http://tinyurl.com/reproducible-000 )?  If the latter,
I don't quite understand why the question is "not MPLUS specific enough"
(maybe they consider it a general statistical question, and that the
MPLUS documentation should be sufficient to indicate how MPLUS
parameterizes models?  I don't know ...)
So in lme your model would be

  lme(response ~ (intelligence+gender)*poly(time,2), 
     random=(poly(time,2)|individual),
    data=... )  

?

(Maybe?  I'm not quite sure I've specified the predictor by time
interaction correctly ... and I'm not sure whether you're just trying
to use a pure quadratic model, and if so whether you can justify
a pure quadratic [i.e. setting the linear term to zero] ... however,
all of that is separate from any mixed-model issues yo
That sounds right; the female slope per unit of the continuous
predictor should be 0.2 greater than the male slope.  (But I don't
know exactly what you mean by 'quadratic slope' above -- I'm now
guessing you mean pure quadratic.)
I think you'd need to do a bit of algebra on this.
It would mean the slope with respect to time increased or decreased
by the relevant amount per unit of intelligence.

  None of these questions are specific to mixed models, they all 
have to do with the coding of parameters in linear models more
generally.  I don't know where this is covered best: maybe see
one of Crawley's books, or Faraway's books on linear models.  Perhaps
others have suggestions.

  Ben Bolker