Learn R Programming

rlist (version 0.2.2)

list.append: Append a list

Description

Append a list

Usage

list.append(.data, ...)

Arguments

.data
The original list
...
A vector or list to append after x

Examples

Run this code
x <- list(a=1,b=2,c=3)
list.append(x,d=4,e=5)
list.append(x,d=4,f=c(2,3))

Run the code above in your browser using DataLab