attrassign(survival)
attrassign()所属R语言包:survival
Create new-style "assign" attribute
创建新风格“assign”属性
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The "assign" attribute on model matrices describes which columns come from which terms in the model formula. It has two versions. R uses the original version, but the alternate version found in S-plus is sometimes useful.
"assign"模型矩阵的属性描述模型公式的列。它有两个版本。 R使用原来的版本,但发现在S-PLUS的替代版本,有时是有用的。
用法----------Usage----------
## Default S3 method:[默认方法]
attrassign(object, tt,...)
## S3 method for class 'lm'
attrassign(object,...)
参数----------Arguments----------
参数:object
model matrix or linear model object
模型矩阵或线性模型对象
参数:tt
terms object
条款反对
参数:...
ignored
忽视
Details
详情----------Details----------
For instance consider the following
例如,考虑以下
值----------Value----------
A list with names corresponding to the term names and elements that are vectors indicating which columns come from which terms
与名称对应的长期的名称和元素向量表示这列从哪个方面来的名单
参见----------See Also----------
terms,model.matrix
terms,model.matrix
举例----------Examples----------
formula <- Surv(time,status)~factor(edema)
tt <- terms(formula)
mf <- model.frame(tt,data=pbc)
mm <- model.matrix(tt,mf)
## a few rows of data[#几行的数据]
mm[1:3,]
## old-style assign attribute[#旧式分配属性]
attr(mm,"assign")
## alternate style assign attribute[#备用样式属性赋值]
attrassign(mm,tt)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|