AreaInter {spatstat.model} | R Documentation |
The Area Interaction Point Process Model
Description
Creates an instance of the Area Interaction point process model (Widom-Rowlinson penetrable spheres model) which can then be fitted to point pattern data.
Usage
AreaInter(r)
Arguments
r |
The radius of the discs in the area interaction process |
Details
This function defines the interpoint interaction structure of a point process called the Widom-Rowlinson penetrable sphere model or area-interaction 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 area interaction structure is
yielded by the function AreaInter()
. See the examples below.
In standard form, the area-interaction process
(Widom and Rowlinson, 1970;
Baddeley and Van Lieshout, 1995) with disc radius ,
intensity parameter
and interaction parameter
is a point process with probability density
for a point pattern , where
represent the
points of the pattern,
is the number of points in the
pattern, and
is the area of the region formed by
the union of discs of radius
centred at the points
.
Here
is a normalising constant.
The interaction parameter can be any positive number.
If
then the model reduces to a Poisson
process with intensity
.
If
then the process is regular,
while if
the process is clustered.
Thus, an area interaction process can be used to model either
clustered or regular point patterns. Two points interact if the
distance between them is less than
.
The standard form of the model, shown above, is a little
complicated to interpret in practical applications.
For example, each isolated point of the pattern contributes a factor
to the probability density.
In spatstat, the model is parametrised in a different form, which is easier to interpret. In canonical scale-free form, the probability density is rewritten as
where is the new intensity parameter,
is the new interaction parameter, and
is the interaction potential. Here
is the normalised area (so that the discs have unit area).
In this formulation, each isolated point of the pattern contributes a
factor to the probability density (so the
first order trend is
). The quantity
is a true interaction potential, in the sense that
if the point pattern
does not contain any
points that lie close together (closer than
units
apart).
When a new point is added to an existing point pattern
, the rescaled potential
increases by
a value between 0 and 1.
The increase is zero if
is not close to any point of
.
The increase is 1 if the disc of radius
centred at
is completely contained in the union of discs of radius
centred at the data points
. Thus, the increase in
potential is a measure of how close the new point
is to the
existing pattern
. Addition of the point
contributes a factor
to the probability density, where
is the
increase in potential.
The old parameters of the
standard form are related to
the new parameters
of the canonical
scale-free form, by
and
provided and
are positive and finite.
In the canonical scale-free form, the parameter
can take any nonnegative value. The value
again corresponds to a Poisson process, with intensity
.
If
then the process is regular,
while if
the process is clustered.
The value
corresponds to a hard core process
with hard core radius
(interaction distance
).
The nonstationary area interaction process is similar except that
the contribution of each individual point
is a function
of location, rather than a constant beta.
Note the only argument of AreaInter()
is the disc radius r
.
When r
is fixed, the model becomes an exponential family.
The canonical parameters
and
are estimated by
ppm()
, not fixed in
AreaInter()
.
Value
An object of class "interact"
describing the interpoint interaction
structure of the area-interaction process with disc radius .
Warnings
The interaction distance of this process is equal to
2 * r
. Two discs of radius r
overlap if their centres
are closer than 2 * r
units apart.
The estimate of the interaction parameter
is unreliable if the interaction radius
r
is too small
or too large. In these situations the model is approximately Poisson
so that is unidentifiable.
As a rule of thumb, one can inspect the empty space function
of the data, computed by
Fest
. The value
of the empty space function at the interaction radius
r
should
be between 0.2 and 0.8.
Author(s)
Adrian Baddeley Adrian.Baddeley@curtin.edu.au and Rolf Turner rolfturner@posteo.net
References
Baddeley, A.J. and Van Lieshout, M.N.M. (1995). Area-interaction point processes. Annals of the Institute of Statistical Mathematics 47 (1995) 601–619.
Widom, B. and Rowlinson, J.S. (1970). New model for the study of liquid-vapor phase transitions. The Journal of Chemical Physics 52 (1970) 1670–1684.
See Also
ppm
,
pairwise.family
,
ppm.object
ragsAreaInter
and rmh
for simulation
of area-interaction models.
Examples
# prints a sensible description of itself
AreaInter(r=0.1)
# Note the reach is twice the radius
reach(AreaInter(r=1))
# Fit the stationary area interaction process to Swedish Pines data
ppm(swedishpines ~1, AreaInter(r=7))
# Fit the stationary area interaction process to `cells'
ppm(cells ~1, AreaInter(r=0.06))
# eta=0 indicates hard core process.
# Fit a nonstationary area interaction with log-cubic polynomial trend
ppm(swedishpines ~polynom(x/10,y/10,3), AreaInter(r=7))