R/show_options.R

Defines functions show_options

Documented in show_options

#' Show package options
#'
#' See [surveytable-options] for a discussion of some of the options.
#'
#' @param sw  starting characters
#'
#' @return List of options and their values.
#' @family options
#' @export
#'
#' @examples
#' show_options()
show_options = function(sw = "surveytable") {
  op = options()
  idx = op %>% names %>% startsWith(sw)
  op[idx]
}

Try the surveytable package in your browser

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

surveytable documentation built on Aug. 26, 2025, 1:07 a.m.