Description Usage Arguments Details Value Author(s) References See Also Examples
Estimates repeatability from a generalized linear mixed-effects models fitted by restricted maximum likelihood (REML).
1 2 3 4 |
formula |
Formula as used e.g. by lmer. The grouping factor(s) of interest needs to be included as a random effect, e.g. '(1|groups)'. Covariates and additional random effects can be included to estimate adjusted repeatabilities. |
grname |
A character string or vector of character strings giving the
name(s) of the grouping factor(s), for which the repeatability should
be estimated. Spelling needs to match the random effect names as given in |
data |
A dataframe that contains the variables included in the |
link |
Link function. |
CI |
Width of the required confidence interval between 0 and 1 (defaults to 0.95). |
nboot |
Number of parametric bootstraps for interval estimation
(defaults to 1000). Larger numbers of bootstraps give a better
asymtotic CI, but may be time-consuming. Bootstrapping can be switch off by setting
|
npermut |
Number of permutations used when calculating asymptotic p-values
(defaults to 0). Larger numbers of permutations give a better
asymtotic p-values, but may be time-consuming (in particular when multiple grouping factors
are specified). Permutaton tests can be switch off by setting |
parallel |
Boolean to express if parallel computing should be applied (defaults to FALSE). If TRUE, bootstraps and permutations will be distributed across multiple cores. |
ncores |
Specifying the number of cores to use for parallelization. On default, all but one of the available cores are used. |
ratio |
Boolean to express if variances or ratios of variance should be estimated. If FALSE, the variance(s) are returned without forming ratios. If TRUE (the default) ratios of variances (i.e. repeatabilities) are estimated. |
adjusted |
Boolean to express if adjusted or unadjusted repeatabilities should be estimated. If TRUE (the default), the variances explained by fixed effects (if any) will not be part of the denominator, i.e. repeatabilities are calculated after controlling for variation due to covariates. If FALSE, the varianced explained by fixed effects (if any) will be added to the denominator. |
expect |
A character string specifying the method for estimating the expectation in Poisson models with log link and in Binomial models with logit link (in all other cases the agrument is ignored). The only valid terms are 'meanobs' and 'latent' (and 'liability for binary and proportion data). With the default 'meanobs', the expectation is estimated as the mean of the observations in the sample. With 'latent', the expectation is estimated from estiamtes of the intercept and variances on the link scale. While this is a preferred solution, it is susceptible to the distribution of fixed effect covariates and gives appropriate results typically only when all covariances are centered to zero. With 'liability' estimates follow formulae as presented in Nakagawa & Schielzeth (2010). Liability estimates tend to be slightly higher. |
rptObj |
The output of a rptR function. Can be specified in combination with update = TRUE to update bootstraps and permutations |
update |
If TRUE, the rpt object to be updated has to be inputted with the rptObj argument. The function just updates the permutations and bootstraps, so make sure to specify all other arguments excactly like for the rpt object specified in rptObj. |
see details section of rpt
for details on parametric bootstrapping,
permutation and likelihood-ratio tests.
Returns an object of class rpt
that is a a list with the following elements:
call |
Function call. |
datatype |
Response distribution (here: 'Binary'). |
CI |
Coverage of the confidence interval as specified by the |
R |
|
se |
|
CI_emp |
|
P |
|
R_boot_link |
Parametric bootstrap samples for R on the link scale. Each |
R_boot_org |
Parametric bootstrap samples for R on the original scale. Each |
R_permut_link |
Permutation samples for R on the link scale. Each |
R_permut_org |
Permutation samples for R on the original scale. Each |
LRT |
List of two elements. LRT_mod is the likelihood for the full model and (2) LRT_table is a data.frame for the reduced model(s) including columns for the likelihood logl_red, the likelihood ratio(s) LR_D, p-value(s)LR_P and degrees of freedom for the likelihood-ratio test(s) LR_df. |
ngroups |
Number of groups for each grouping level. |
nobs |
Number of observations. |
mod |
Fitted model. |
ratio |
Boolean. TRUE, if ratios have been estimated, FALSE, if variances have been estimated |
adjusted |
Boolean. TRUE, if estimates are adjusted |
all_warnings |
|
Holger Schielzeth (holger.schielzeth@uni-jena.de), Shinichi Nakagawa (s.nakagawa@unsw.edu.au) & Martin Stoffel (martin.adam.stoffel@gmail.com)
Carrasco, J. L. & Jover, L. (2003) Estimating the generalized concordance correlation coefficient through variance components. Biometrics 59: 849-858.
Faraway, J. J. (2006) Extending the linear model with R. Boca Raton, FL, Chapman & Hall/CRC.
Nakagawa, S. & Schielzeth, H. (2010) Repeatability for Gaussian and non-Gaussian data: a practical guide for biologists. Biological Reviews 85: 935-956
rpt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | data(BeetlesMale)
# Note: nboot and npermut are set to 0 for speed reasons.
# repeatability with one grouping level
rptBinary(Colour ~ (1|Population), grname=c("Population"),
data=BeetlesMale, nboot=0, npermut=0)
# unadjusted repeatabilities with fixed effects and
# estimation of the fixed effect variance
rptBinary(Colour ~ Treatment + (1|Container) + (1|Population),
grname=c("Container", "Population", "Fixed"),
data=BeetlesMale, nboot=0, npermut=0, adjusted=FALSE)
## Not run:
# variance estimation of random effects and residual
R_est <- rptBinary(Colour ~ Treatment + (1|Container) + (1|Population),
grname=c("Container","Population","Residual"),
data = BeetlesMale, nboot=0, npermut=0, ratio = FALSE)
## End(Not run)
|
Repeatability estimation using the glmm method and logit link
Repeatability for Population
--------------------------------
Link-scale approximation:
R = 0.188
SE = NA
CI = [NA, NA]
P = 8.66e-15 [LRT]
NA [Permutation]
Original-scale approximation:
R = 0.185
SE = NA
CI = [NA, NA]
P = 8.66e-15 [LRT]
NA [Permutation]
Repeatability estimation using the glmm method and logit link
Repeatability for Container
--------------------------------
Link-scale approximation:
R = 0
SE = NA
CI = [NA, NA]
P = 0.5 [LRT]
NA [Permutation]
Original-scale approximation:
R = 0
SE = NA
CI = [NA, NA]
P = 0.5 [LRT]
NA [Permutation]
Repeatability for Population
--------------------------------
Link-scale approximation:
R = 0.196
SE = NA
CI = [NA, NA]
P = 5.55e-09 [LRT]
NA [Permutation]
Original-scale approximation:
R = 0.174
SE = NA
CI = [NA, NA]
P = 5.55e-09 [LRT]
NA [Permutation]
Repeatability for Fixed
--------------------------------
Link-scale approximation:
R = 0.045
SE = NA
CI = [NA, NA]
P = NA [LRT]
NA [Permutation]
Original-scale approximation:
R = 0.04
SE = NA
CI = [NA, NA]
P = NA [LRT]
NA [Permutation]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.