R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.nexus <- list(
    nexus.verbose = interactive()
  )
  toset <- !(names(op.nexus) %in% names(op))
  if(any(toset)) options(op.nexus[toset])

  invisible()
}

Try the nexus package in your browser

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

nexus documentation built on Sept. 11, 2024, 6:43 p.m.