Skip to content

Instantly share code, notes, and snippets.

@anarosner
Last active August 29, 2015 14:18
Show Gist options
  • Save anarosner/17eb3be8b38f1ddf4ce6 to your computer and use it in GitHub Desktop.
Save anarosner/17eb3be8b38f1ddf4ce6 to your computer and use it in GitHub Desktop.
setting_attributes.R
#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