Nothing
# Copyright 2004 by Roger Bivand and Danlin Yu
#
p.adjustSP <- function(p, nb, method="none") {
# class to inherits Jari Oksanen 080603
if (!inherits(nb, "nb")) stop("not a neighbours list")
n <- card(nb) + 1
pn <- cbind(p, n)
res <- apply(pn, 1, function(x) p.adjust(x[1], method=method, n=x[2]))
res
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.