label(SASxport)
label()所属R语言包:SASxport
Set or Retreive the 'label', 'SASformat', or 'SASiformat' Attribute of a Vector
设置或中撷取的标签,SASformat“,或”一个Vector SASiformat属性
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Sets or retrieves the "label", "SASformat", or "SASiformat" attribute of an object.
设置或检索"label","SASformat"或"SASiformat"属性的对象。
More comprehensive support for object labels, and SASformat, are available in Frank Harrell's Hmisc package.
更多全面支持对象标签,并SASformat,,弗兰克·哈勒尔的Hmisc包。
用法----------Usage----------
label(x, default)
label(x) <- value
SASformat(x, default)
SASformat(x) <- value
SASiformat(x, default)
SASiformat(x) <- value
参数----------Arguments----------
参数:x
any object
任何对象
参数:value
new value for the "label", "SASformat", or "SASiformat" attribute of an object.
新值"label","SASformat"或"SASiformat"属性的对象。
参数:default
value to return when no appropriate attribute is found. The usual return value is NULL.
返回的值时没有找到合适的属性。通常返回值是NULL。
值----------Value----------
the contents of the "label", "SASformat", or "SASiformat" attribute of x, if any; otherwise, the value provided by default.
的内容"label","SASformat"或"SASiformat"x的属性,如果有的话;否则,所提供的价值default。
(作者)----------Author(s)----------
Gregory R. Warnes <a href="mailto:greg@random-techologies-llc.com">greg@random-techologies-llc.com</a> based
on code from the <code>Hmisc</code> library by Frank E. Harrell, Jr.
实例----------Examples----------
fail.time <- c(10,20)
# set attributes[设置属性]
label(fail.time) <- 'Failure Time'
SASformat(fail.time) <- 'Numeric2'
SASiformat(fail.time) <- 'Numeric2'
# display individual attributes[显示个人属性]
label(fail.time)
SASformat(fail.time)
SASiformat(fail.time)
# display all attributes[显示所有属性]
attributes(fail.time)
# Example showing specification of default return value[的示例显示规格,默认的返回值]
a <- 70
label(a, default="no label")
## Not run: [#不运行:]
# for a nice display[一个不错的显示]
library(Hmisc)
describe(fail.time)
f <- cph(Surv(fail.time, event) ~ xx)
plot(xx,xx2,xlab=label(xx),"s",sep=""))
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|