我使用attr函数设置了变量的属性,如下所示:
x <- 1 :20
attr(x,'name') <- c("RED","BLUE")
attributes(x)
$name
[1] "RED" "BLUE"
现在我已经设置了属性;如果我使用'$
&#39;它说"Error : $ operator is invalid for atomic vectors"
。我还尝试了显示x['name']
NA
如何访问此原子矢量属性?
答案 0 :(得分:5)
如果我理解你的问题,
attr(x, 'name')
#[1] "RED" "BLUE"
或者
attributes(x)$name
#[1] "RED" "BLUE"