areaGain(u, X, r, ..., W=as.owin(X), exact=FALSE,
ngrid=spatstat.options("ngrid.disc"))
"ppp"
)."ppp"
)."owin"
)
in which the area should be computed.exact=TRUE
, areas are computed exactly using
analytic geometry. If exact=FALSE
then a faster algorithm
is used to compute a discrete approximation to the areas.exact=FALSE
.u
and one column for each value in r
.r
centred at the location u
that is not covered by any of the discs of radius r
centred at the points of the pattern X
.
This area is important in some calculations related to
the area-interaction model AreaInter
. If u
is a point pattern and r
is a vector,
the result is a matrix, with one row for each point in u
and one column for each entry of r
. The [i,j]
entry
in the matrix is the area of that part of the disc of radius
r[j]
centred at the location u[i]
that is
not covered by any of the discs of radius r[j]
centred at the points of the pattern X
.
If W
is not NULL
, then the areas are computed only
inside the window W
.
AreaInter
,
areaLoss
data(cells)
u <- c(0.5,0.5)
areaGain(u, cells, 0.1)
Run the code above in your browser using DataLab