#' @export
sum2 <- function(..., na.rm = TRUE) {
ellipsis::check_dots_used()
sum(..., na.rm = na.rm)
}
#' @export
max2 <- function(..., na.rm = TRUE) {
ellipsis::check_dots_used()
max(..., na.rm = na.rm)
}
#' @export
min2 <- function(..., na.rm = TRUE) {
ellipsis::check_dots_used()
min(..., na.rm = na.rm)
}
#' @export
range2 <- function(..., na.rm = TRUE) {
ellipsis::check_dots_used()
range(..., na.rm = na.rm)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.