Last chance! 50% off unlimited learning
Sale ends in
KRmodcomp
object.Extract (or "get") components from a KRmodcomp
object,
which is the result of the KRmodcomp
function.
getKR(object, name = c("ndf", "ddf", "Fstat", "p.value", "F.scaling",
"FstatU", "p.valueU", "aux"))
A KRmodcomp
object, which is the result of the
KRmodcomp
function
The available slots. If name
is missing or NULL
then everything is returned.
Ulrich Halekoh, S<U+00F8>ren H<U+00F8>jsgaard (2014)., A Kenward-Roger Approximation and Parametric Bootstrap Methods for Tests in Linear Mixed Models - The R Package pbkrtest., Journal of Statistical Software, 58(10), 1-30., http://www.jstatsoft.org/v59/i09/
# NOT RUN {
data(beets, package='pbkrtest')
lg <- lmer(sugpct ~ block + sow + harvest + (1|block:harvest),
data=beets, REML=FALSE)
sm <- update(lg, .~. - harvest)
xx <- KRmodcomp(lg, sm)
getKR(xx, "ddf") # get denominator degrees of freedom.
# }
Run the code above in your browser using DataLab