cbind_list: Takes a list of vectors and cbinds them to form a data frame.

Description Usage Arguments Author(s) Examples

Description

If the vectors are of different lengths, then it will pad the smaller vectors with NA's. Any non-vectors will be coerced to be vectors.

Usage

1

Arguments

lst

A list

Author(s)

David Gerard

Examples

1
2
3
4
5
lst <- list(1:3, 1:4)
cbind_list(lst)

lst <- append(lst, c("a"))
cbind_list(lst)

dcgerard/gerard documentation built on May 15, 2019, 1:24 a.m.