Skip to content
Prev 18443 / 20628 Next

blme optimizer warnings

A couple of guesses here in addition to what Ben mentioned, but you
likely don't want a prior on the covariance of the random effects and
the weights should be on the scale of inverse variances. The following
replicates the numbers for the CCREM column from table 1:

blmer(g ~ 1 + (1 | Study) + (1 | Subscale) + (1 | Outcome:Study:Subscale),
      data = meta, weights = Precision, control =
lmerControl(optimizer = "bobyqa"),
      resid.prior = point(1), cov.prior = NULL)
On Wed, May 13, 2020 at 10:04 PM Sijia Huang <huangsjcc at gmail.com> wrote: