inst/doc/supported-functions.R

## ----echo = FALSE, results = "asis"-------------------------------------------
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.