Estimates the empty space function
F3est(X, ..., rmax = NULL, nrval = 128, vside = NULL,
correction = c("rs", "km", "cs"),
sphere = c("fudge", "ideal", "digital"))
Three-dimensional point pattern (object of class "pp3"
).
Ignored.
Optional. Maximum value of argument
Optional. Number of values of nrval
is required to avoid discretisation effects.
Optional. Side length of the voxels in the discrete approximation.
Optional. Character vector specifying the edge correction(s) to be applied. See Details.
Optional. Character string specifying how to calculate the
theoretical value of
A function value table (object of class "fv"
) that can be
plotted, printed or coerced to a data frame containing the function values.
A small value of vside
and a large value of nrval
are required for reasonable accuracy.
The default value of vside
ensures that the total number of
voxels is 2^22
or about 4 million.
To change the default number of voxels, see
spatstat.options("nvoxel")
.
For a stationary point process
The three-dimensional point pattern X
is assumed to be a
partial realisation of a stationary point process
The box containing the point
pattern is discretised into cubic voxels of side length vside
.
The distance function
The available edge corrections are:
"rs"
:the reduced sample (aka minus sampling, border correction) estimator (Baddeley et al, 1993)
"km"
:the three-dimensional version of the Kaplan-Meier estimator (Baddeley and Gill, 1997)
"cs"
:the three-dimensional generalisation of the Chiu-Stoyan or Hanisch estimator (Chiu and Stoyan, 1998).
Alternatively correction="all"
selects all options.
The result includes a column theo
giving the
theoretical value of r
measured in the discretised distance metric.
The argument sphere
determines how this will be calculated.
If sphere="ideal"
the calculation will use the
volume of an ideal sphere of radius
If sphere="fudge"
then the volume of the ideal sphere will
be multiplied by 0.78, which gives the approximate volume
of the sphere in the discretised distance metric.
If sphere="digital"
then the volume of the sphere in the
discretised distance metric is computed exactly using another
distance transform. This takes longer to compute, but is exact.
Baddeley, A.J, Moyeed, R.A., Howard, C.V. and Boyde, A. Analysis of a three-dimensional point pattern with replication. Applied Statistics 42 (1993) 641--668.
Baddeley, A.J. and Gill, R.D. (1997) Kaplan-Meier estimators of interpoint distance distributions for spatial point processes. Annals of Statistics 25, 263--292.
Borgefors, G. (1986) Distance transformations in digital images. Computer Vision, Graphics and Image Processing 34, 344--371.
Chiu, S.N. and Stoyan, D. (1998) Estimators of distance distributions for spatial patterns. Statistica Neerlandica 52, 239--246.
# NOT RUN {
# }
# NOT RUN {
X <- rpoispp3(42)
Z <- F3est(X)
if(interactive()) plot(Z)
# }
Run the code above in your browser using DataLab