Computes a set of quasi variances (and corresponding quasi standard errors) for estimated model coefficients relating to the levels of a categorical (i.e., factor) explanatory variable. For details of the method see Firth (2000), Firth (2003) or Firth and de Menezes (2004). Quasi variances generalize and improve the accuracy of <U+201C>floating absolute risk<U+201D> (Easton et al., 1991). This device for economical model summary was first suggested by Ridout (1989). Modified from qvcalc.lm() of packages qvcalc by David Firth, d.firth@warwick.ac.uk
qvlmer(object, factorname = NULL, coef.indices = NULL, dispersion = NULL, ...)
A object obtained using lmer from package lme4
Either NULL, or a character vector of length 1
Either NULL, or a numeric vector of length at least 3
An optional scalar multiplier for the covariance matrix, to cope with overdispersion for example
Other arguments to pass to qvcalc.default
A list of class qv.
qvlmer is Quasi Variances for lmer Model Coefficients
Easton, D. F, Peto, J. and Babiker, A. G. A. G. (1991) Floating absolute risk: an alternative to relative risk in survival and case-control analysis avoiding an arbitrary reference group. Statistics in Medicine 10, 1025<U+2013>1035.
Firth, D. (2000) Quasi-variances in Xlisp-Stat and on the web. Journal of Statistical Software 5.4, 1<U+2013>13. At http://www.jstatsoft.org
Firth, D. (2003) Overcoming the reference category problem in the presentation of statistical models. Sociological Methodology 33, 1<U+2013>18.
Firth, D. and de Mezezes, R. X. (2004) Quasi-variances. Biometrika 91, 65<U+2013>80.
McCullagh, P. and Nelder, J. A. (1989) Generalized Linear Models. London: Chapman and Hall.
Menezes, R. X. de (1999) More useful standard errors for group and factor effects in generalized linear models. D.Phil. Thesis, Department of Statistics, University of Oxford.
Ridout, M.S. (1989). Summarizing the results of fitting generalized linear models to data from designed experiments. In: Statistical Modelling: Proceedings of GLIM89 and the 4th International Workshop on Statistical Modelling held in Trento, Italy, July 17<U+2013>21, 1989 (A. Decarli et al., eds.), pp 262<U+2013>269. New York: Springer.
# NOT RUN {
x <- rnorm(100)
y <- rnorm(100)
G <- as.factor(sample(c("A", "B", "C", "D"), 100, replace = TRUE))
R <- as.factor(rep(1:25, 4))
library(lme4)
m <- lmer(y ~ x + G + (1 | R))
qvlmer(m, factorname="G")
# }
Run the code above in your browser using DataLab