Performs base::cbind()
on data.tables, possibly by reference.
Arguments
- x
(
data.table::data.table()
)data.table::data.table()
to add columns to.- y
(
data.table::data.table()
)data.table::data.table()
to take columns from.
Value
(data.table::data.table()
): Updated x
.
Examples
x = data.table::data.table(a = 1:3, b = 3:1)
y = data.table::data.table(c = runif(3))
rcbind(x, y)
#> a b c
#> <int> <int> <num>
#> 1: 1 3 0.4183614
#> 2: 2 2 0.6688707
#> 3: 3 1 0.5076503