methods.glmRob(robust)
methods.glmRob()所属R语言包:robust
Methods for glmRob Generic Functions
glmRob的通用功能的方法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Accessor methods for the coefficients, deviance, formula, labels, model frame, model matrix, residuals, and weights in an lmRob object.
存取方法的系数,偏差,配方,标签,模型框架,模型矩阵,残差,和权重的lmRob对象。
用法----------Usage----------
## S3 method for class 'glmRob'
coef(object, ...)
## S3 method for class 'glmRob'
family(object, ...)
## S3 method for class 'glmRob'
labels(object, ...)
## S3 method for class 'glmRob'
model.frame(formula, ...)
## S3 method for class 'glmRob'
model.matrix(object, ...)
## S3 method for class 'glmRob'
residuals(object, type = c("deviance", "pearson", "working", "response"), ...)
参数----------Arguments----------
参数:formula
an lmRob object.
对象的lmRob。
参数:object
an lmRob object.
对象的lmRob。
参数:type
a character string specifying the type of residuals which should be returned.
一个字符串指定类型的残留物应当返还。
参数:...
additional arguments required by the generic functions.
额外的参数所要求的一般职能。
值----------Value----------
A vector, matrix or formula containing the requested component of the glmRob object.
一个向量,矩阵或的公式包含请求的组件的glmRob对象。
参见----------See Also----------
lmRob, lmRob.object.
lmRob,lmRob.object。
实例----------Examples----------
data(breslow.dat)
bres.rob <- glmRob(sumY ~ Age10 + Base4 * Trt, family = poisson(), data = breslow.dat)
coef(bres.rob)
family(bres.rob)
labels(bres.rob)
model.frame(bres.rob)
model.matrix(bres.rob)
residuals(bres.rob)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|