Skip to content

Commit

Permalink
docs: add manual page for anti_join.duckplyr_df()
Browse files Browse the repository at this point in the history
  • Loading branch information
maelle committed Nov 29, 2024
1 parent e673cf8 commit f3db5e6
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 0 deletions.
14 changes: 14 additions & 0 deletions R/anti_join-rd.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#' @title Filtering joins (duckplyr)
#'
#' @description This is a method for the [`dplyr::anti_join()`] generic.
#' `anti_join()` return all rows from `x` with**out** a match in `y`.
#'
#' @inheritParams dplyr::anti_join
#' @examples
#' library("dplyr") # for the data
#' library("duckplyr")
#' band_members %>% anti_join(band_instruments)
#' @seealso [`dplyr::anti_join()`]
#' @rdname anti_join.duckplyr_df
#' @name anti_join.duckplyr_df
NULL
1 change: 1 addition & 0 deletions R/anti_join.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Generated by 02-duckplyr_df-methods.R
#' @rdname anti_join.duckplyr_df
#' @export
anti_join.duckplyr_df <- function(x, y, by = NULL, copy = FALSE, ..., na_matches = c("na", "never")) {
check_dots_empty0(...)
Expand Down
70 changes: 70 additions & 0 deletions man/anti_join.duckplyr_df.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f3db5e6

Please sign in to comment.