is.poissonclusterprocess | R Documentation |
Given a point process model (either a model that has been fitted to data, or a model specified by its parameters), determine whether the model is a Poisson cluster process.
is.poissonclusterprocess(model)
## S3 method for class 'kppm'
is.poissonclusterprocess(model)
## S3 method for class 'zclustermodel'
is.poissonclusterprocess(model)
## Default S3 method:
is.poissonclusterprocess(model)
model |
Any kind of object representing a spatial point process model, either a model fitted to data, or a specification of a point process model. |
The argument model
represents a fitted spatial point process
model (such as an object of class "ppm"
, "kppm"
or
similar) or a specification of a point process model
(such as an object of class "zclustermodel"
).
This function returns TRUE
if the model
is a Poisson cluster
process, and FALSE
otherwise.
The function is.poissonclusterprocess
is generic, with methods
for classes kppm
and zclustermodel
, and a default
method.
A logical value.
.
kppm
, zclustermodel
.
fut <- kppm(redwood ~ 1, "Thomas")
is.poissonclusterprocess(fut)
fot <- slrm(cells ~ x, dimyx=16)
is.poissonclusterprocess(fot)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.