Skip to content
Prev 2438 / 20628 Next

Rasch with lme4

On Tue, Jun 9, 2009 at 6:38 AM, David Duffy<David.Duffy at qimr.edu.au> wrote:
You are correct that the models are not identical. I assume that the
problem of variance dampening of conditional modes will generalize to
the model under consideration, but one should simulate the specific
model--always a good idea until an analytic answer is available.

I also assumed the Jereon Oom's interest was in demonstrating a
relation between IQ and extroversion, irrespective of the specific
model. If the interest is in the specific correlation, there may
actually be an alternative. The sabreR package allows to estimate the
correlation between up to three dependent variables at the "subject"
level while at the same time allowing for the specification of a
"causal" path between them at the "observation" level (i.e., a
multivariate generalized linear mixed model). I think the
"correlation" model (i.e., m3 below) would be specified as follows:

attach(mydata)
m1 <- sabre(y ~ 1, case=subject, first.link="probit")
m1

m2 <- sabre(extroversion ~ 1, case=subject, first.family="gaussian")
m2

m3 <- sabre(y ~ 1 + extroversion,
                     extroversion ~ 1,
                     case=subject, first.family="binomial",
second.family="gaussian")
m3
detach()

m3 estimates (among other variance components)  a correlation between
the intercepts for y and extroversion across subjects.

The limitation is that sabreR does not allow the specification of
crossed random factors (i.e., of subjects and items). In this respect,
I agree with Harold Dolan on a different branch on this thread. Also
with sabreR you can only estimate the variance of the intercept of the
random effects, not the variance of the fixed effects (or their
associated covariances).  I should also say that I have only checked
out some of the examples in this package. So my experience is very
limited.

Reinhold Kliegl