R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.nisrarr <- list(
    nisrarr.cache_max_age = 60 * 60,
    nisrarr.throttle = 60
  )

  toset <- !(names(op.nisrarr) %in% names(op))
  if (any(toset)) {
    options(op.nisrarr[toset])
  }
}

Try the nisrarr package in your browser

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

nisrarr documentation built on June 8, 2025, 11:15 a.m.