R/startupmessage.R

Defines functions .onAttach

.onAttach <- function(...) {
  if (!interactive()) {return()}

  startupmessage <- c(
    "Developed at the Institute for Defense Analyses (IDA). Type skprGUI() and click tutorial for an introduction.",
    "Questions? Contact: tylermw@gmail.com, or visit http://github.com/tylermorganwall/skpr"
  )

  packageStartupMessage(paste(strwrap(startupmessage), collapse = "\n"))
}

Try the skpr package in your browser

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

skpr documentation built on May 29, 2024, 5:06 a.m.