list_remove | R Documentation |
Remove elements from a list.
list_remove(in_list, ...)
in_list |
The list to remove elements from. |
... |
Names or numeric positions of elements to remove. |
The list with the specified elements removed.
my_list <- list(a = rnorm(10), b = rnorm(10), c = rnorm(10)) list_remove(my_list, b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.