I have a list and I want to remove a single element from it. How can I do this?
I've tried looking up what I think the obvious names for this function would be in the reference manual and I haven't found anything appropriate.
|
I have a list and I want to remove a single element from it. How can I do this? I've tried looking up what I think the obvious names for this function would be in the reference manual and I haven't found anything appropriate.
| ||||
|
feedback
|
|
I don't know R at all, but a bit of creative googling led me here: http://tolstoy.newcastle.edu.au/R/help/05/04/1919.html The key quote from there:
A response to that post later in the thread states:
And the relevant section of the R FAQ says:
Which seems to tell you (in a somewhat backwards way) how to remove an element. Hope that helps, or at least leads you in the right direction. | |||||||||
feedback
|
|
If you don't want to modify the list in-place (e.g. for passing the list with an element removed to a function), you can use indexing: negative indices mean "don't include this element".
Also, logical index vectors are useful:
This works with dataframes, too:
| |||
|
feedback
|
|
Removing Null elements from a list in single line : x=x[-(which(sapply(x,is.null),arr.ind=TRUE))] Cheers | |||
|
feedback
|
|
Here is how the remove the last element of a list in R:
If x might be a vector then you would need to create a new object:
| ||||
|
feedback
|