ICC | R Documentation |
ICC function from David Kenny
ICC(out)
out |
An |
egaov <- aov(follicles ~ factor(Mare), data = OvaryICT)
multilevel::ICC1(egaov)
multilevel::ICC2(egaov)
eglme <- nlme::lme(follicles ~ 1, data = OvaryICT, random = ~ 1 | Mare,
method = 'ML')
# VarCorr(eglme)
ICC(eglme)
library(gamlss)
eggamlss1 <- gamlss(follicles ~ 1 + re(random = ~ 1 | Mare, method = 'ML'),
data = OvaryICT,
sigma.formula = ~ 1)
# VarCorr(getSmo(eggamlss1))
ICC(eggamlss1)
eggamlss2 <- gamlss(follicles ~ 1 + re(random = ~ 1 | Mare, method = 'ML'),
data = OvaryICT,
sigma.formula = ~ 0)
# VarCorr(getSmo(eggamlss2))
ICC(eggamlss2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.