powered by
Remove elements from a list.
list_remove(in_list, ...)
The list with the specified elements removed.
The list to remove elements from.
Names or numeric positions of elements to remove.
my_list <- list(a = rnorm(10), b = rnorm(10), c = rnorm(10)) list_remove(my_list, b)
Run the code above in your browser using DataLab