R provides two different methods for accessing the elements of a list or data.frame- the [] and [[]] operators.
What is the difference between the two? In what situations should I use one over the other?
|
|
R provides two different methods for accessing the elements of a list or data.frame- the What is the difference between the two? In what situations should I use one over the other? |
|||
|
|
|
|
The R Language Definition is handy for answering these types of questions:
|
|||
|
|
|
But dude(!) you can extract a new list composed of multiple elements from a list with [ via name or index - that really is an awesome feature since it provides vector indexing for collections of arbitrary objects. |
||
|
|
|
|
Never use single bracket [ ] indexing for a list. It's almost always a bug when you do it. This really is a language misfeature. |
||
|
|
|
The significant differences between the two methods are the class of the objects they return when used for extraction and whether they may accept a range of values, or just a single value during assignment. Consider the case of data extraction on the following list:
Say we would like to extract the value stored by bool from foo and use it inside an So, using the
This is because the
The second difference is that the
Say we want to overwrite the last two slots of foo with the data contained in bar. If we try to use the
This is because
Note that while the assignment was successful, the slots in foo kept their original names. |
|||
|
|
|
|
|
|||
|
|
|
|
Double brackets accesses a list element, while a single bracket gives you back a list with a single element.
|
||
|
|