# Generated by 02-duckplyr_df-methods.R
#' @export
left_join.duckplyr_df <- function(x, y, by = NULL, copy = FALSE, suffix = c(".x", ".y"), ..., keep = NULL, na_matches = c("na", "never"), multiple = "all", unmatched = "drop", relationship = NULL) {
check_dots_empty0(...)
error_call <- caller_env()
y <- auto_copy(x, y, copy = copy)
# Our implementation
rel_try(list(name = "left_join", x = x, y = y, args = try_list(by = if (!is.null(by) && !is_cross_by(by)) as_join_by(by), copy = copy, keep = keep, na_matches = na_matches, multiple = multiple, unmatched = unmatched, relationship = relationship)),
"No implicit cross joins for left_join()" = is_cross_by(by),
"`multiple` not supported" = !identical(multiple, "all"),
"`unmatched` not supported" = !identical(unmatched, "drop"),
{
out <- rel_join_impl(x, y, by, "left", na_matches, suffix, keep, error_call)
return(out)
}
)
# dplyr forward
left_join <- dplyr$left_join.data.frame
out <- left_join(x, y, by, copy = FALSE, suffix, ..., keep = keep, na_matches = na_matches, multiple = multiple, unmatched = unmatched, relationship = relationship)
return(out)
# dplyr implementation
check_dots_empty0(...)
y <- auto_copy(x, y, copy = copy)
join_mutate(
x = x,
y = y,
by = by,
type = "left",
suffix = suffix,
na_matches = na_matches,
keep = keep,
multiple = multiple,
unmatched = unmatched,
relationship = relationship,
user_env = caller_env()
)
}
duckplyr_left_join <- function(x, y, ...) {
try_fetch(
{
x <- as_duckplyr_df(x)
y <- as_duckplyr_df(y)
},
error = function(e) {
testthat::skip(conditionMessage(e))
}
)
out <- left_join(x, y, ...)
class(out) <- setdiff(class(out), "duckplyr_df")
out
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.