Skip to content
Prev 12557 / 20628 Next

lme4

Note that this is a very large (15*15) random-effects
variance-covariance matrix to estimate: I know that this is
recommended by Barr et al 2013, but see recent discussion
on this list, e.g.
http://article.gmane.org/gmane.comp.lang.r.lme4.devel/12492/

  It would be a good idea to check for a singular fit, i.e.

  t <- getME(mod.15,"theta")
  lwr <- getME(mod.15,"lower")
  any(t[lwr==0]< 1e-6)
These estimated effects look only very slightly different to me
than the ones below (i.e., only a few percent differences in point
estimates, always much smaller than the estimated standard error, and
no qualitative differences in Z/P values).  Can you specify whether
there are any differences that particularly concern you?
You definitely need to increase the number of iterations: see
?lmerControl,
specifically the "optCtrl" setting (e.g.
control=lmerControl(optCtrl=list(maxfun=1e6)))
These are convergence *warnings*.  They do not indicate that your fit
is actually any worse than previously, just that we have increased the
sensitivity of the tests.  Can you specify what version you are using?

   I wouldn't recommend moving back to an earlier version of lme4,
but you could check out https://github.com/lme4/lme4/blob/master/README.md
for instructions on how to install the lme4.0 package if you really
want ...
If you want to install 1.0-4 you can either get the tarball from here:
http://cran.r-project.org/src/contrib/Archive/lme4/lme4_1.0-4.tar.gz

but you will either need to be able to install it from source (i.e.
have compilers etc. installed) or modify the DESCRIPTION file to
make yourself the maintainer and ship it off to
ftp://win-builder.r-project.org.

*OR* (possibly a better idea) you can retrieve a binary/.zip file from

http://lme4.r-forge.r-project.org/repos/bin/windows/contrib/3.0/lme4_1.0-4.zip

and install it.

  (You didn't specify your actual error messages from the attempted
lme4 installation.)