R/zzz.R

.onLoad <- function (libnames, pkgname) {
  op <- options()
  op.transx <- list(
    transx.display = TRUE,
    transx.na.rm = TRUE,
    transx.keep.attrs = TRUE
  )
  toset <- !(names(op.transx) %in% names(op))
  if (any(toset))
    options(op.transx[toset])
  invisible()
}

# Set Global Variables to avoid NOTES in cmdchecks
if (getRversion() >= "2.15.1") {
  utils::globalVariables(
    c("fill")
  )
}

Try the transx package in your browser

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

transx documentation built on Nov. 27, 2020, 5:08 p.m.