rbind_pad: Alternative to 'plyr::rbind.fill' which can be...

Description Usage Arguments Value Author(s) See Also Examples

Description

A plausible alternative to plyr::rbind.fill which can be very memory-intensive

Usage

1
rbind_pad(x, verbose = FALSE)

Arguments

x

list of objects inheriting from data.frame

verbose

logical print output information

Value

data.frame

Author(s)

Thomas P. Harte

See Also

plyr::rbind.fill

Examples

1
2
3
4
5
6
7
  x<- list(
       mtcars[c("mpg", "wt")],
       mtcars[c("wt", "cyl")]
  )

  rbind_pad(x)
  plyr::rbind.fill(x)

tharte/tutils documentation built on Feb. 11, 2020, 9:17 a.m.