R/AAA.R

Defines functions .onAttach .onUnload

.CONSTRAINEDKRIGING_CACHE <- new.env(FALSE, parent=globalenv())

.onAttach <- function(lib, pkg) {
    assign("gpclib", FALSE, envir=.CONSTRAINEDKRIGING_CACHE)
    packageStartupMessage(paste("\nThe constrainedKriging package provides functions for efficient",
                                "\ncomputations of nonlinear spatial predictions with local change of support.\n\n"
	      ))
}

.onUnload <- function(libpath) {
    rm(.CONSTRAINEDKRIGING_CACHE)
}

Try the constrainedKriging package in your browser

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

constrainedKriging documentation built on May 2, 2019, 4:51 a.m.