bind_cols {tidytable} | R Documentation |
Bind data.tables by row and column
Description
Bind multiple data.tables into one row-wise or col-wise.
Usage
bind_cols(..., .name_repair = "unique")
bind_rows(..., .id = NULL)
Arguments
... |
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 |
Examples
# 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))
[Package tidytable version 0.11.1 Index]