Creates an instance of the Connected Component point process model which can then be fitted to point pattern data.
Concom(r)
Threshold distance
An object of class "interact"
describing the interpoint interaction
structure of the connected component process with disc radius
The interaction distance of this process is infinite.
There are no well-established procedures for edge correction
for fitting such models, and accordingly the model-fitting function
ppm
will give an error message saying that the user must
specify an edge correction. A reasonable solution is
to use the border correction at the same distance r
, as shown in the
Examples.
This function defines the interpoint interaction structure of a point process called the connected component process. It can be used to fit this model to point pattern data.
The function ppm()
, which fits point process models to
point pattern data, requires an argument
of class "interact"
describing the interpoint interaction
structure of the model to be fitted.
The appropriate description of the connected component interaction is
yielded by the function Concom()
. See the examples below.
In standard form, the connected component process
(Baddeley and Moller, 1989) with disc radius
To define the term C(x)
, suppose that we construct a planar
graph by drawing an edge between
each pair of points
The interaction parameter
In spatstat, the model is parametrised in a different form,
which is easier to interpret.
In canonical form, the probability density is rewritten as
When a new point
If desired, the original parameter
The nonstationary connected component process is similar except that
the contribution of each individual point
Note the only argument of Concom()
is the threshold distance r
.
When r
is fixed, the model becomes an exponential family.
The canonical parameters ppm()
, not fixed in
Concom()
.
Baddeley, A.J. and Moller, J. (1989) Nearest-neighbour Markov point processes and random sets. International Statistical Review 57, 89--121.
# NOT RUN {
# prints a sensible description of itself
Concom(r=0.1)
# Fit the stationary connected component process to redwood data
ppm(redwood, ~1, Concom(r=0.07), rbord=0.07)
# Fit the stationary connected component process to `cells' data
ppm(cells, ~1, Concom(r=0.06), rbord=0.06)
# eta=0 indicates hard core process.
# Fit a nonstationary connected component model
# with log-cubic polynomial trend
# }
# NOT RUN {
ppm(swedishpines, ~polynom(x/10,y/10,3), Concom(r=7), rbord=7)
# }
Run the code above in your browser using DataLab