
Estimates the nearest neighbour distance distribution
function
Gest(X, r=NULL, breaks=NULL, …,
correction=c("rs", "km", "han"),
domain=NULL)
The observed point pattern,
from which an estimate of ppp
, or data
in any format acceptable to as.ppp()
.
Optional. Numeric vector. The values of the argument
This argument is for internal use only.
Ignored.
Optional.
The edge correction(s) to be used to estimate "none"
, "rs"
, "km"
, "Hanisch"
and "best"
.
Alternatively correction="all"
selects all options.
Optional. Calculations will be restricted to this subset of the window. See Details.
An object of class "fv"
, see fv.object
,
which can be plotted directly using plot.fv
.
Essentially a data frame containing some or all of the following columns:
the values of the argument
the ``reduced sample'' or ``border correction''
estimator of
the spatial Kaplan-Meier estimator of
the hazard rate
the uncorrected estimate of X
to the nearest other point of
the pattern
the Hanisch correction estimator of
the theoretical value of
The function
The reduced sample estimator of
The spatial Kaplan-Meier estimator of
The nearest neighbour distance distribution function
(also called the ``event-to-event'' or
``inter-event'' distribution)
of a point process
An estimate of
This algorithm estimates the nearest neighbour distance distribution
function X
. It assumes that X
can be treated
as a realisation of a stationary (spatially homogeneous)
random spatial point process in the plane, observed through
a bounded window.
The window (which is specified in X
as Window(X)
)
may have arbitrary shape.
The argument X
is interpreted as a point pattern object
(of class "ppp"
, see ppp.object
) and can
be supplied in any of the formats recognised
by as.ppp()
.
The estimation of
The argument r
is the vector of values for the
distance hist
)
for the computation of histograms of distances. The
estimators are computed from histogram counts.
This introduces a discretisation
error which is controlled by the fineness of the breakpoints.
First-time users would be strongly advised not to specify r
.
However, if it is specified, r
must satisfy r[1] = 0
,
and max(r)
must be larger than the radius of the largest disc
contained in the window. Furthermore, the successive entries of r
must be finely spaced.
The algorithm also returns an estimate of the hazard rate function,
If the argument domain
is given, the estimate of domain
(although their
nearest neighbours may lie outside domain
).
This is useful in bootstrap techniques. The argument domain
should be a window (object of class "owin"
) or something acceptable to
as.owin
. It must be a subset of the
window of the point pattern X
.
The naive empirical distribution of distances from each point of
the pattern X
to the nearest other point of the pattern,
is a biased estimate of correction="none"
.
Care should be taken not to use the uncorrected
empirical
To simply compute the nearest neighbour distance for each point in the
pattern, use nndist
. To determine which point is the
nearest neighbour of a given point, use nnwhich
.
Baddeley, A.J. Spatial sampling and censoring. In O.E. Barndorff-Nielsen, W.S. Kendall and M.N.M. van Lieshout (eds) Stochastic Geometry: Likelihood and Computation. Chapman and Hall, 1998. Chapter 2, pages 37-78.
Baddeley, A.J. and Gill, R.D. Kaplan-Meier estimators of interpoint distance distributions for spatial point processes. Annals of Statistics 25 (1997) 263-292.
Cressie, N.A.C. Statistics for spatial data. John Wiley and Sons, 1991.
Diggle, P.J. Statistical analysis of spatial point patterns. Academic Press, 1983.
Hanisch, K.-H. (1984) Some remarks on estimators of the distribution function of nearest-neighbour distance in stationary spatial point patterns. Mathematische Operationsforschung und Statistik, series Statistics 15, 409--412.
Ripley, B.D. Statistical inference for spatial processes. Cambridge University Press, 1988.
Stoyan, D, Kendall, W.S. and Mecke, J. Stochastic geometry and its applications. 2nd edition. Springer Verlag, 1995.
nndist
,
nnwhich
,
Fest
,
Jest
,
Kest
,
km.rs
,
reduced.sample
,
kaplan.meier
# NOT RUN {
data(cells)
G <- Gest(cells)
plot(G)
# P-P style plot
plot(G, cbind(km,theo) ~ theo)
# the empirical G is below the Poisson G,
# indicating an inhibited pattern
if(interactive()) {
plot(G, . ~ r)
plot(G, . ~ theo)
plot(G, asin(sqrt(.)) ~ asin(sqrt(theo)))
}
# }
Run the code above in your browser using DataLab