Lumenize
Lumenize copied to clipboard
R function attach()
Saves typing.
Typically, to access variables in a data frame, you would use $ notation:
head(DataFrame$field,4)
But if you run
attach(DataFrame) then you can just type the field name as in
head(field, 4)