bw.pcfinhom | R Documentation |
Uses composite likelihood or generalized least squares cross-validation to select a smoothing bandwidth for the kernel estimation of the inhomogeneous pair correlation function.
bw.pcfinhom(X, lambda=NULL, ..., rmax=NULL, nr=10000,
cv.method=c("compLik", "leastSQ", "oracle"),
leaveoneout=TRUE, simple=TRUE,
fast=TRUE, srange=NULL, ns=32, use.count=TRUE,
gtrue=NULL,
verbose=FALSE, warn=TRUE)
X |
A point pattern (object of class |
lambda |
Optional.
Values of the estimated intensity function.
Either a vector giving the intensity values
at the points of the pattern |
... |
Additional arguments passed to |
rmax |
Optional. Numeric value. Maximum value of the spatial lag distance |
nr |
Integer. Number of subintervals for discretization of [0, rmax] to use in computing numerical integrals. |
cv.method |
Choice of cross validation method: either
|
leaveoneout |
Logical value specifying whether to use leave-one-out estimators. See Details. |
simple |
Logical. Whether to use simple removal of spatial lag distances. See Details. |
fast |
Logical value indicating whether to find the optimal value
by an optimization algorithm ( |
srange |
Optional. Numeric vector of length 2 giving the range of bandwidth values that should be searched to find the optimum bandwidth. |
ns |
Integer. Number of values of bandwidths at which to evaluate
the objective function, when |
use.count |
Logical value specifying the benchmark for the calculation
when |
gtrue |
Function in the R language giving the true pair correlation
function, when |
verbose |
Logical value indicating whether to print progress reports during the optimization procedure. |
warn |
Logical. If |
This function selects an appropriate bandwidth bw
for the kernel estimator of the pair correlation function
of a point process intensity computed by pcfinhom
.
With cv.method="leastSQ"
, the bandwidth
h
is chosen to minimise an unbiased
estimate of the integrated mean-square error criterion
M(h)
defined in equation (4) in Guan (2007a).
The code implements the fast algorithm of Jalilian and Waagepetersen
(2018).
With cv.method="compLik"
, the bandwidth
h
is chosen to maximise a likelihood
cross-validation criterion CV(h)
defined in
equation (6) of Guan (2007b).
M(b) = \frac{\mbox{MSE}(\sigma)}{\lambda^2} - g(0)
With cv.method="oracle"
, the true pair correlation function
must be provided as the argument gtrue
. The bandwidth
h
is chosen to minimise the integrated squared difference
between the pcf estimate and the true pcf,
M(h) = \int_0^{\mbox{rmax}} (\hat{g}(r) - g(r))^2 dr
The result is a numerical value giving the selected bandwidth.
A numerical value giving the selected bandwidth.
The result also belongs to the class "bw.optim"
which can be plotted.
The bandwidth bw
returned by bw.pcfinhom
is the standard deviation of the smoothing kernel,
following the standard convention in R.
As mentioned in the documentation for
density.default
and pcf.ppp
,
this differs from other definitions of bandwidth that can be
found in the literature. The scale parameter
h
, which is called the bandwidth in some literature,
is defined differently.
For example for the Epanechnikov kernel, h
is the half-width
of the kernel, and bw=h/sqrt(5)
.
Rasmus Waagepetersen and Abdollah Jalilian. Adapted for spatstat by \spatstatAuthors. Hacked by \adrian, \martinH and \tilman.
Guan, Y. (2007a). A composite likelihood cross-validation approach in selecting bandwidth for the estimation of the pair correlation function. Scandinavian Journal of Statistics, 34(2), 336–346.
Guan, Y. (2007b). A least-squares cross-validation bandwidth selection approach in pair correlation function estimations. Statistics & Probability Letters, 77(18), 1722–1729.
Jalilian, A. and Waagepetersen, R. (2018) Fast bandwidth selection for estimation of the pair correlation function. Journal of Statistical Computation and Simulation, 88(10), 2001–2011. https://www.tandfonline.com/doi/full/10.1080/00949655.2018.1428606
pcfinhom
b <- bw.pcfinhom(japanesepines)
plot(pcfinhom(japanesepines, bw=b))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.