Last active
August 29, 2015 14:18
-
-
Save anarosner/17eb3be8b38f1ddf4ce6 to your computer and use it in GitHub Desktop.
setting_attributes.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#get a sample data set | |
boo <- iris | |
#it's a data.frame | |
str(boo) | |
#set some attributes | |
attributes( boo )$source <- "r datasets package: iris" | |
attributes( boo )$foo <- c(1,2,3,4,5) | |
#see all attributes | |
attributes(boo) | |
#see select attribute | |
attr( boo, "foo" ) | |
attributes( boo )$foo | |
#it's still a normal data.frame | |
head(boo) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment