R/init.R

Defines functions .onAttach

# Load tibble (if available) for pretty printing
.onAttach <- function(lib, pkg){
  maketools_diagnostics()
  if(interactive() && is.null(.getNamespace('tibble'))){
    tryCatch({
      getNamespace('tibble')
    }, error = function(e){})
  }
}

Try the maketools package in your browser

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

maketools documentation built on April 12, 2025, 1:33 a.m.