R/list_categories.R

Defines functions list_categories

Documented in list_categories

#' List the available SIA module categories
#'
#' Lists all available categories a SIA module can be placed in. SIA app will
#' place the module with illegal category under "Modules".
#'
#' @return A character vector.
#' @export
#'
#' @family helpers
#'
#' @examples
#' list_categories()
#'
list_categories <- function() {
  c(
    "Scores", "Validity", "Reliability", "Item analysis",
    "Regression", "IRT models", "DIF/Fairness", "Modules"
  )
}

Try the SIAtools package in your browser

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

SIAtools documentation built on April 4, 2025, 2:13 a.m.