powered by
Append elements to a list
list.append(.data, ...)
A list or vector
list
vector
A vector or list to append after x
x
list.prepend, list.insert
list.prepend
list.insert
# NOT RUN { 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