Supported functions

This page contains a list of all functions supported by tidystats.

Note that if a function is not yet supported, you can request support for it by creating an issue on GitHub or by using the custom_stats() function. See the vignette("custom-statistics") for more information.

Packages and supported functions

functions <- jsonlite::read_json("supported-functions.json")

purrr::walk(
  functions,
  function(x) {
    cat(paste("###", x$package))
    cat("\n")

    purrr::walk(
      x$functions,
      function(y) {
        cat(paste("-", y, "\n"))
      }
    )

    cat("\n")

    return(invisible(""))
  }
)


Try the tidystats package in your browser

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

tidystats documentation built on Oct. 17, 2023, 1:06 a.m.