R/zzz.R

Defines functions .onAttach .onUnload .onLoad

.onLoad <- function(lib, pkg) {
	library.dynam("flexrsurv", pkg, lib)
}
#end of .onLoad


.onUnload <- function(lib) {
	library.dynam.unload("flexrsurv", lib)
}


.onAttach <- function(lib, pkg) {
#	vv <- read.dcf(file.path(lib, pkg, "DESCRIPTION"), c("Version", "Date"))
	packageStartupMessage('Successfully loaded package flexrsurv version ',
			as.character(packageVersion("flexrsurv")), '. For help type ?flexrsurv')
}

Try the flexrsurv package in your browser

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

flexrsurv documentation built on June 7, 2023, 5:09 p.m.