Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

bind_cols..html

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 ?vctrs::vec_as_names for options/details.

.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))

tidytable

Tidy Interface to 'data.table'

v0.6.1
MIT + file LICENSE
Authors
Mark Fairbanks [aut, cre], Abdessabour Moutik [ctb], Matt Carlson [ctb], Ivan Leung [ctb], Ross Kennedy [ctb]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.