op-get-attr | R Documentation |
This operator extracts or sets attributes for regular objects and S4 fields for S4 objects.
x %@% name
x %@% name <- value
x |
Object |
name |
Attribute name |
value |
New value for attribute |
# Unlike `@`, this operator extracts attributes for any kind of
# objects:
factor(1:3) %@% "levels"
mtcars %@% class
mtcars %@% class <- NULL
mtcars
# It also works on S4 objects:
.Person <- setClass("Person", slots = c(name = "character", species = "character"))
fievel <- .Person(name = "Fievel", species = "mouse")
fievel %@% name
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.