R/package_utils.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.evprof <- list(
    evprof.start.hour = 0,
    evprof.tzone = "Europe/Amsterdam"
  )
  toset <- !(names(op.evprof) %in% names(op))
  if(any(toset)) options(op.evprof[toset])
  invisible()
}

Try the evprof package in your browser

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

evprof documentation built on May 29, 2024, 2:36 a.m.