R/zzz.r

Defines functions is_attached .onAttach

.onAttach <- function(...) {
  # needed <- core[!is_attached(core)]
  # if (length(needed) == 0)
  #   return()
  openVA_attach()
}

is_attached <- function(x) {
  paste0("package:", x) %in% search()
}

Try the openVA package in your browser

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

openVA documentation built on May 29, 2024, 6:04 a.m.