rbind_fill_vector: Combine vectors of unequal length by row, filling missing...

rbind_fill_vectorR Documentation

Combine vectors of unequal length by row, filling missing columns with NA.

Description

rbinds 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 NULL.

Value

a single data frame

Examples

a <- list(NULL, 1:2, NA, "a", 11:13)
rbind_fill_vector(a)

weirichs/eatTools documentation built on April 3, 2024, 6:11 p.m.