R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  # Debugging
  debugme::debugme()

  # Options
  op <- options()
  op.plumbertableau <- list(
    plumbertableau.warnings = TRUE
  )

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

  invisible()
}

Try the plumbertableau package in your browser

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

plumbertableau documentation built on Aug. 6, 2021, 9:05 a.m.