rbind_fill_vector {eatTools} | R Documentation |
Combine vectors of unequal length by row, filling missing columns with NA.
Description
rbind
s a list of vectors of unequal length to a data.frame. Missing columns are filled with NA.
Usage
rbind_fill_vector(x)
Arguments
x |
A list of vectors. Each element of x must have a dimension of |
Value
a single data frame
Examples
a <- list(NULL, 1:2, NA, "a", 11:13)
rbind_fill_vector(a)
[Package eatTools version 0.7.6 Index]