f_bind | R Documentation |
Faster bind rows and columns.
f_bind_rows(...)
f_bind_cols(..., .repair_names = TRUE, .recycle = TRUE)
... |
Data frames to bind. |
.repair_names |
Should duplicate column names be made unique?
Default is |
.recycle |
Should inputs be recycled to a common row size?
Default is |
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.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.