extract.lmeDesign(RLRsim)
extract.lmeDesign()所属R语言包:RLRsim
Extract the Design of a linear mixed model
解线性混合模型的设计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions extract various elements of the design of a fitted lme-, mer or lmerMod-Object. They are called by exactRLRT and exactLRT.
这些功能提取一个装有lme - mer或lmerMod对象的设计的各种元素。他们被称为exactRLRT和exactLRT。
用法----------Usage----------
extract.lmeDesign(m)
extract.lmerDesign(m)
extract.lmerModDesign(m)
参数----------Arguments----------
参数:m
fitted lme- or mer-Object
安装lme - mer对象
值----------Value----------
a list with components
与组件的列表
参数:Vr
estimated covariance of the random effects divided by the estimated variance of the residuals
估计的协方差除以残差的估计方差的随机效应
参数:X
design of the fixed effects
设计的固定效应
参数:Z
design of the random effects
设计的随机效应
参数:sigmasq
variance of the residuals
残差的方差
参数:lambda
ratios of the variances of the random effects and the variance of the residuals
比率的方差的随机效应和残差的方差
参数:y
response variable
响应变量
注意----------Note----------
extract.lmeDesign is based on mgcv::extract.lme.cov by Simon Wood
extract.lmeDesign的基础上mgcv::extract.lme.cov西蒙·伍德
(作者)----------Author(s)----------
Fabian Scheipl, <code>extract.lmerModDesign</code> supplied by Ben Bolker
实例----------Examples----------
library(nlme)
d <- extract.lmeDesign(lme(distance ~ age + Sex, data = Orthodont, random = ~ 1))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|