coef.glmfm(robust)
coef.glmfm()所属R语言包:robust
Extract Model Coefficients
提取模型系数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extract the model coefficients from a glmfm object.
提取模型系数从glmfm对象。
用法----------Usage----------
## S3 method for class 'glmfm'
coef(object, ...)
参数----------Arguments----------
参数:object
a glmfm object.
对象的一个glmfm。
参数:...
additional arguments required by the generic coef function.
的通用coef函数需要的额外的参数。
值----------Value----------
a numeric matrix with one row for each model in object and one column for each coefficient in the model.
一列每个模型object和一列每个模型中的系数矩阵的数值。
实例----------Examples----------
data(breslow.dat)
bres.fm <- fit.models(list(Robust = "glmRob", Classical = "glm"),
formula = sumY ~ Age10 + Base4*Trt,
family = poisson(), data = breslow.dat)
coef(bres.fm)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|