R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  op.ic <- list(
    # OpenRepGrid.ic.login = FALSE
  )

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

  invisible(NULL)
}

Try the OpenRepGrid.ic package in your browser

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

OpenRepGrid.ic documentation built on May 29, 2024, 7:29 a.m.