list.insert: Insert a series of lists at the given index

Description Usage Arguments See Also Examples

View source: R/list.insert.R

Description

Insert a series of lists at the given index

Usage

1
list.insert(.data, index, ...)

Arguments

.data

A list or vector

index

The index at which the lists are inserted

...

A group of lists

See Also

list.append, list.prepend

Examples

1
2
3
4
5
6
7
## Not run: 
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.insert(x, 2, p2.1 = list(type='B',score=list(c1=8,c2=9)))

## End(Not run)

Example output

$p1
$p1$type
[1] "A"

$p1$score
$p1$score$c1
[1] 10

$p1$score$c2
[1] 8



$p2.1
$p2.1$type
[1] "B"

$p2.1$score
$p2.1$score$c1
[1] 8

$p2.1$score$c2
[1] 9



$p2
$p2$type
[1] "B"

$p2$score
$p2$score$c1
[1] 9

$p2$score$c2
[1] 9



$p3
$p3$type
[1] "B"

$p3$score
$p3$score$c1
[1] 9

$p3$score$c2
[1] 7

rlist documentation built on Sept. 5, 2021, 5:30 p.m.