File: zzz.R

package info (click to toggle)
r-cran-effectsize 0.8.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,404 kB
  • sloc: sh: 17; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.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()
# }