R/utils.R

Defines functions list_aggregators

Documented in list_aggregators

#' Show the aggregation functions
#'
#' @description
#' It displays all the aggregators registered in the package.
#' No arguments are necessary.
#' @export
#' @examples
#' list_aggregators()
list_aggregators <- function(){
  ls("package:shinyHugePlot") %>%
    stringr::str_subset("_aggregator$") %>%
    setdiff(c("aggregator", "rng_aggregator"))
}

Try the shinyHugePlot package in your browser

Any scripts or data that you put into this service are public.

shinyHugePlot documentation built on Oct. 1, 2024, 5:08 p.m.