f_bind_rows {fastplyr}R Documentation

Bind data frame rows and columns

Description

Faster bind rows and columns.

Usage

f_bind_rows(..., .fill = TRUE)

f_bind_cols(..., .repair_names = TRUE, .recycle = TRUE, .sep = "...")

Arguments

...

Data frames to bind.

.fill

Should missing columns be filled with NA? Default is TRUE.

.repair_names

Should duplicate column names be made unique? Default is TRUE.

.recycle

Should inputs be recycled to a common row size? Default is TRUE.

.sep

Separator to use for creating unique column names.

Value

f_bind_rows() performs a union of the data frames specified via ... and joins the rows of all the data frames, without removing duplicates.

f_bind_cols() joins the columns, creating unique column names if there are any duplicates by default.


[Package fastplyr version 0.5.0 Index]