
Creates an instance of the Area Interaction point process model (Widom-Rowlinson penetrable spheres model) which can then be fitted to point pattern data.
AreaInter(r)
The radius of the discs in the area interaction process
An object of class "interact"
describing the interpoint interaction
structure of the area-interaction process with disc radius
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 r
is too small
or too large. In these situations the model is approximately Poisson
so that Fest
. The value r
should
be between 0.2 and 0.8.
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
The interaction parameter
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
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
When a new point
The old parameters
In the canonical scale-free form, the parameter
The nonstationary area interaction process is similar except that
the contribution of each individual point
Note the only argument of AreaInter()
is the disc radius r
.
When r
is fixed, the model becomes an exponential family.
The canonical parameters ppm()
, not fixed in
AreaInter()
.
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.
ppm
,
pairwise.family
,
ppm.object
ragsAreaInter
and rmh
for simulation
of area-interaction models.
# NOT RUN {
# }
# NOT RUN {
# 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
data(swedishpines)
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))
# }
Run the code above in your browser using DataLab