Learn R Programming

rlist (version 0.2.2)

list.remove: Remove members from a list by index or name

Description

Remove members from a list by index or name

Usage

list.remove(.data, range = integer())

Arguments

.data
list
range
A numeric vector of indices or a character vector of names to remove from .data

Examples

Run this code
x <- list(p1 = list(type="A",score=list(c1=10,c2=8)),
       p2 = list(type="B",score=list(c1=9,c2=9)),
       p3 = list(type="B",score=list(c1=9,c2=7)))
list.remove(x,"p1")
list.remove(x,c(1,2))

Run the code above in your browser using DataLab