bind_cols | R Documentation |
Bind multiple data.tables into one row-wise or col-wise.
bind_cols(..., .name_repair = "unique")
bind_rows(..., .id = NULL)
... |
data.tables or data.frames to bind |
.name_repair |
Treatment of duplicate names. See |
.id |
If TRUE, an integer column is made as a group id |
# Binding data together by row
df1 <- data.table(x = 1:3, y = 10:12)
df2 <- data.table(x = 4:6, y = 13:15)
df1 %>%
bind_rows(df2)
# Can pass a list of data.tables
df_list <- list(df1, df2)
bind_rows(df_list)
# Binding data together by column
df1 <- data.table(a = 1:3, b = 4:6)
df2 <- data.table(c = 7:9)
df1 %>%
bind_cols(df2)
# Can pass a list of data frames
bind_cols(list(df1, df2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.