Attributes
Objects in R can have many properties associated with them, called attributes. These properties explain what an object represents and how it should be interpreted by R. Quite often, the only difference between two similar objects is that they have different attributes.[22] Some important attributes are shown in Table 7-2. Many objects in R are used to represent numerical data—in particular, arrays, matrices, and data frames. So many common attributes refer to properties of these objects.
Table 7-2. Common attributes
| Attribute | Description |
|---|---|
| class | The class of the object. |
| comment | A comment on the object; often a description of what the object means. |
| dim | Dimensions of the object. |
| dimnames | Names associated with each dimension of the object. |
| names | Returns the names attribute of an object. Results depend on object type; for example, it returns the name of each data column in a data frame or each named object in an array. |
| row.names | The name of each row in an object (related to dimnames). |
| tsp | Start time for an object. Useful for time series data. |
| levels | Levels of a factor. |
There is a standard way to query object attributes in R. For an
object x and attribute a, you refer to the attribute through a(x). In most cases, there is a method to get
the current value of the attribute and a method to set a new value of the
attribute. (Changing attributes with these methods will alter the
attributes in the current environment but will not affect the attributes
in an enclosing environment.)
You can get a list ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access