Learn R Programming

dsTidyverse (version 1.0.4)

bindRowsDS: Bind multiple data frames by row.

Description

DataSHIELD implementation of dplyr::bind_rows.

Usage

bindRowsDS(to_combine = NULL, .id = NULL)

Value

A data frame the same type as the first element of to_combine

Arguments

to_combine

Data frames to combine. Each argument can either be a data frame, a list that could be a data frame, or a list of data frames. Columns are matched by name, and any missing columns will be filled with NA.

.id

he name of an optional identifier column. Provide a string to create an output column that identifies each input. The column will use names if available, otherwise it will use positions.