說我有以下功能:多評論()用於功能屬性
sqrt_x = function(x) {
sqrtx = x^0.5
return(list("sqrtx" = sqrt))
}
attr(sqrt_x, "comment") <- "This is a comment to be placed on two different lines"
如果我鍵入
comment(sqrt_x)
我得到
[1] "This is a comment to be placed on two different lines"
我想要的東西,但是,該評論是在兩個不同的行上返回的(它也可以是更多的行和不同的評論元素,任何想法都可以使用)
'comment(sqrt_x)< - 「我的評論」是一個更清晰的方式來指定評論。 –
thx,但是,它不會給我更多的內線, – Toby