Merge a tbl with it a foreignTbl
joinForeignTbl(
tbl,
foreignTbl,
keepNA = TRUE,
by = foreignTbl$by,
copy = TRUE,
type = c("inner", "left")[1]
)
tbl
, containing both columns from argument tbl
and argument foreignTbl
.
tbl
list
as created by foreignTbl
logical
keep rows from tbl with NA keys.
named character
, columns to join on.
logical
, whether or not to copy the foreignTbl
to the source of argument tbl
for joining.
character(1)
, type of joint to perform. Can be 'inner' or 'left'.
Jasper Schelfhout
see also dplyr
join functions, for example dplyr::left_join
.