diff --git a/r/R/dplyr-funcs-doc.R b/r/R/dplyr-funcs-doc.R index 24a644a72782d..7f5bca8f644a3 100644 --- a/r/R/dplyr-funcs-doc.R +++ b/r/R/dplyr-funcs-doc.R @@ -21,7 +21,7 @@ #' #' The `arrow` package contains methods for 37 `dplyr` table functions, many of #' which are "verbs" that do transformations to one or more tables. -#' The package also has mappings of 212 R functions to the corresponding +#' The package also has mappings of 221 R functions to the corresponding #' functions in the Arrow compute library. These allow you to write code inside #' of `dplyr` methods that call R functions, including many in packages like #' `stringr` and `lubridate`, and they will get translated to Arrow and run @@ -42,7 +42,7 @@ #' * [`collect()`][dplyr::collect()] #' * [`compute()`][dplyr::compute()] #' * [`count()`][dplyr::count()] -#' * [`distinct()`][dplyr::distinct()]: `.keep_all = TRUE` not supported +#' * [`distinct()`][dplyr::distinct()]: `.keep_all = TRUE` returns a non-missing value if present, only returning missing values if all are missing. #' * [`explain()`][dplyr::explain()] #' * [`filter()`][dplyr::filter()] #' * [`full_join()`][dplyr::full_join()]: the `copy` argument is ignored @@ -83,7 +83,7 @@ #' Functions can be called either as `pkg::fun()` or just `fun()`, i.e. both #' `str_sub()` and `stringr::str_sub()` work. #' -#' In addition to these functions, you can call any of Arrow's 262 compute +#' In addition to these functions, you can call any of Arrow's 271 compute #' functions directly. Arrow has many functions that don't map to an existing R #' function. In other cases where there is an R function mapping, you can still #' call the Arrow function directly if you don't want the adaptations that the R