# NOT RUN {
df1 <- data.table(x = c(1,2,3), y = c(3,4,5))
df2 <- data.table(x = c(1,2,3), y = c(3,4,5))
df1 %>%
bind_rows.(df2)
bind_rows.(list(df1, df2))
df1 %>%
bind_cols.(df2)
bind_cols.(list(df1, df2))
# }
Run the code above in your browser using DataLab