R/onAttach.R

Defines functions .onAttach

#' @importFrom utils citation

.onAttach<-function(libname, pkgname){
    requireNamespace("utils")
    cit<-citation(pkgname)
    txt<-paste(c(format(cit,"citation")),collapse="\n\n")
    packageStartupMessage(txt)
}

Try the StochBlock package in your browser

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

StochBlock documentation built on July 25, 2025, 3 a.m.