R/aigra-examples.R

Defines functions aigra_example_item_bank

Documented in aigra_example_item_bank

#' Get path to bundled AIGRA example item bank
#'
#' @return Path to the bundled example CSV item bank.
#' @export
aigra_example_item_bank <- function() {
  path <- system.file(
    "extdata",
    "aigra_example_items.csv",
    package = "AIGRA"
  )

  if (!nzchar(path)) {
    stop("Bundled example item bank not found.")
  }

  path
}

Try the AIGRA package in your browser

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

AIGRA documentation built on July 10, 2026, 5:06 p.m.