
Combine a gen_tibble to a data.frame or tibble by column
Source:R/cbind_gen_tibble.R
cbind.gen_tbl.Rd
A cbind()
method to merge gen_tibble
objects with data.frames and normal
tibbles. Whilst this works, it is not ideal as it does not check the order of
the tables, and we suggest that you use dplyr::left_join()
instead. Note
that cbind
will not combine two gen_tibbles
(i.e. it will NOT combine
markers for the same individuals)
Usage
# S3 method for class 'gen_tbl'
cbind(..., deparse.level = 1)
Arguments
- ...
a gen_tibble and a data.frame or tibble
- deparse.level
an integer controlling the construction of column names. See
cbind
for details.