當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R comment 查詢或設置“評論”屬性


R語言 comment 位於 base 包(package)。

說明

這些函數設置和查詢評論任何屬性R對象。這通常適用於data.frames 或模型適合。

與其他 attributes 相反, comment 不會打印(通過 printprint.default )。

分配 NULL 或零長度字符向量會刪除注釋。

用法

comment(x)
comment(x) <- value

參數

x

任何R對象

value

character 向量,或 NULL

例子

x <- matrix(1:12, 3, 4)
comment(x) <- c("This is my very important data from experiment #0234",
                "Jun 5, 1998")
x
comment(x)

也可以看看

attributesattr 用於其他屬性。

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Query or Set a "comment" Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。