rbind data.frames possibly with different column names

bindr(...)

Arguments

...

data.frames

Value

data.frame

Examples

x <- data.frame(a=1, b=2)
y <- data.frame(b=4, d=5)
bindr(x, y)
#>    a b  d
#> 1  1 2 NA
#> 2 NA 4  5