R: How to run some code on load of package? R: How to run some code on load of package? r r

R: How to run some code on load of package?


There is usually a "processing function" (traditionally called zzz.R) withtasks to be performed when the package is loaded, such as loading librariesand compiled code. For example you can create a zzz.R file where you create this function:

.onLoad <- function(libname, pkgname){  x <- rnorm(10)   ## dummy example }