R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.dimensio <- list(
    dimensio.verbose = TRUE,
    dimensio.digits = 3,
    dimensio.max.print = 10
  )
  toset <- !(names(op.dimensio) %in% names(op))
  if(any(toset)) options(op.dimensio[toset])

  invisible()
}

Try the dimensio package in your browser

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

dimensio documentation built on Sept. 11, 2024, 8:35 p.m.