R/zzz.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.es <- list(
    # es.digits = 2,
    # es.ci = c(0.95, 0.95),
    # es.alt = c("two.sided", "greater"),
    es.use_symbols = FALSE
  )

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

  invisible(NULL)
}
#
# .onAttach <- function(libname, pkgname) {
#   # packageStartupMessage()
# }

Try the effectsize package in your browser

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

effectsize documentation built on Sept. 14, 2023, 5:07 p.m.