print.sabre(sabreR)
print.sabre()所属R语言包:sabreR
Defining and Fitting SABRE Models
SABRE模型的定义和装配
译者:生物统计家园网 机器人LoveR
描述----------Description----------
'print.sabre' is used to print information about a fitted sabre model.
“print.sabre”是用来打印一个装有军刀模型的信息。
用法----------Usage----------
## S3 method for class 'sabre'
print(x, estimates = TRUE, iterations = FALSE, variables = FALSE, settings = TRUE, shm = TRUE, rem = TRUE,...)
参数----------Arguments----------
参数:x
The sabre model to be printed (mandatory)
要打印的佩剑模型(强制)
参数:estimates
Output will include model estimates for standard homogenous model (if shm = TRUE) and random effects model (if rem = TRUE).
输出将包括标准的同质性模型(如SHM = TRUE)和随机效应模型(REM = TRUE)的模型估计。
参数:iterations
Output will include the iterations from the model fitting for standard homogenous model (if shm = TRUE) and random effects model (if rem = TRUE).
计划将包括从模型的拟合标准的同质性模型(如SHM = TRUE)和随机效应模型(REM = TRUE)的迭代。
参数:variables
Output will include the model variable names and types for standard homogenous model (if shm = TRUE) and random effects model (if rem = TRUE).
计划将包括标准的同质性模型(如SHM = TRUE)和随机效应模型(REM = TRUE)的模型变量的名称和类型。
参数:settings
Output will include the model settings and likelihood figures for standard homogenous model (if shm = TRUE) and random effects model (if rem = TRUE).
输出包括数字标准的同质性模型(如SHM = TRUE)和随机效应模型(REM = TRUE)的模式设置和可能性。
参数:shm
Enables information regarding the standard homogenous model when set to TRUE
允许有关标准的同质模式设置为TRUE时,
参数:rem
Enables information regarding the random effects model when set to TRUE
使信息的随机效应模型设置为TRUE时,
参数:...
other arguments to be passed to or from other methods
其他参数传递给其他方法
值----------Value----------
Displays the details of the fitted model.
显示拟合模型的细节。
(作者)----------Author(s)----------
Prof. R. Crouchley
Centre for e-Science
Lancaster University
Lancaster
United Kingdom
e-mail : asarc@exchange.lancs.ac.uk
实例----------Examples----------
# load data ...[加载数据...]
data(drvisits)
# ... and attach it[...并将其附加]
attach(drvisits)
# the first model[第一个模型]
sabre.model.1<-sabre(numvisit~reform+age+educ+married+badh+loginc+summer,
case=obs,
first.family="poisson")
# the second model[第二个模型]
sabre.model.2<-sabre(numvisit~reform+age+educ+married+badh+loginc+summer,
case=id,
first.family="poisson")
# compare them[对它们进行比较]
print(sabre.model.1)
print(sabre.model.2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|