R/onAttach.r

Defines functions .onAttach

.onAttach <- function(libname, pkgname) {
  packageStartupMessage(
    gettext(
      "\n\nWelcome to 'prevR': estimate regional trends of a prevalence.",
      domain = "R-prevR"
    )
  )
  packageStartupMessage(
    gettext(
      paste0(
        "\t- type help('prevR') for details\n",
        "\t- type demo(prevR) for a demonstration\n",
        "\t- type citation('prevR') to cite prevR in a publication.\n\n "
      ),
      domain = "R-prevR"
    )
  )
}

Try the prevR package in your browser

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

prevR documentation built on May 31, 2023, 7:32 p.m.