comment(base)
comment()所属R语言包:base
Query or Set a "comment" Attribute
查询或设置一个“注释”属性
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions set and query a comment attribute for any R objects. This is typically useful for data.frames or model fits.
这些功能的设置和查询R对象的任何评论属性。这通常是有用的data.frames或模型拟合。
Contrary to other attributes, the comment is not printed (by print or print.default).
违反其他attributes,comment不印(print或print.default)。
Assigning NULL or a zero-length character vector removes the comment.
分配NULL或零长度的字符向量中删除注释。
用法----------Usage----------
comment(x)
comment(x) <- value
参数----------Arguments----------
参数:x
any R object
任何R对象
参数:value
a character vector, or NULL.
character向量,或NULL。
参见----------See Also----------
attributes and attr for other attributes.
attributes和attr其他的属性。
举例----------Examples----------
x <- matrix(1:12, 3,4)
comment(x) <- c("This is my very important data from experiment #0234",[0234“,]
"Jun 5, 1998")
x
comment(x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|