为什么数值对象的属性返回NULL?

时间:2016-11-06 11:13:34

标签: r

> y <- 1
> attributes(y)
NULL

虽然class(y)返回numeric并且我们知道class是一个属性,但为什么attributes(y)会返回NULL

1 个答案:

答案 0 :(得分:1)

R有许多属性,请参阅?attributes

  

请注意一些属性(即class,comment,dim,dimnames,names,row.names和tsp)......

意味着attributes只是其中之一。期望每个对象默认分配attributesattributes(obj) <- value)是错误的。