Nothing
#'
#' clusterprocess.R
#'
#' $Revision: 1.2 $ $Date: 2025/05/16 07:14:33 $
#'
#' clusterprocess() is defined in spatstat.random
#' The following methods are for generics defined in spatstat.model
is.poissonclusterprocess.clusterprocess <- function(model) { TRUE }
pcfmodel.clusterprocess <- function(model, ...) {
p <- model$rules$pcf
mpar <- model$par.idio
other <- model$other
f <- function(r) {
as.numeric(do.call(p, c(list(par=mpar, rvals=r), other)))
}
return(f)
}
Kmodel.clusterprocess <- function(model, ...) {
K <- model$rules$K
mpar <- model$par.idio
other <- model$other
f <- function(r) {
as.numeric(do.call(K, c(list(par=mpar, rvals=r), other)))
}
return(f)
}
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.