How to combine two datasets in R with same number of rows but different columns without any join condition? -
suppose have 2 datasets:
d1:
b c 1 0 2 4 2 1 2 3 3 2 1 0
d2:
d e 1 3 8 2 1 5 3 2 7
i want have data set combination of 2 should look:
b c d e 1 0 2 4 3 8 2 1 2 3 1 5 3 2 1 0 2 7
i've tried merge cross joins them making 3*3.
we can use cbind
do.call(cbind, list(d1, d2))
or using dplyr
library(dplyr) bind_cols(d1, d2)
Comments
Post a Comment