Skip to content
Prev 18861 / 20628 Next

ICC from lmer with back transform

Hi,

I am not sure I understand your calculation proposal, but if you want to compute the ICC from the original scale before a log-transformation, you will need to also account for the intercept and the formula is a bit more complex. You can see equations 35 and 36 of:
Nakagawa, S. & Schielzeth, H. Repeatability for Gaussian and non Gaussian data: a practical guide for biologists. Biological Reviews 85, 935?956 (2010).

Note that, due to Jensen's inequality, I believe that, to use these equations, you'd need your to use a log-link rather than a log-transform in the formula (although in practice, the difference might be subtle). Something like:

model <- lmer(VARIABLE ~ 1 +(1|Side)+(1|Asessor)+(1|ID), data = data, family = gaussian(link = "log"), REML=FALSE)

Hope this helps,
Pierre

Le vendredi 30 octobre 2020, 11:08:30 CET fabien leboeuf a ?crit :