For a multitype point pattern,
estimate the distribution of the distance
from a point of type
Gcross(X, i, j, r=NULL, breaks=NULL, …, correction=c("rs", "km", "han"))
The observed point pattern,
from which an estimate of the cross type distance distribution function
The type (mark value)
of the points in X
from which distances are measured.
A character string (or something that will be converted to a
character string).
Defaults to the first level of marks(X)
.
The type (mark value)
of the points in X
to which distances are measured.
A character string (or something that will be
converted to a character string).
Defaults to the second level of marks(X)
.
Optional. Numeric vector. The values of the argument
This argument is for internal use only.
Ignored.
Optional. Character string specifying the edge correction(s)
to be used. Options are "none"
, "rs"
, "km"
,
"hanisch"
and "best"
.
Alternatively correction="all"
selects all options.
An object of class "fv"
(see fv.object
).
Essentially a data frame containing six numeric columns
the values of the argument
the ``reduced sample'' or ``border correction''
estimator of
the Hanisch-style estimator of
the spatial Kaplan-Meier estimator of
the hazard rate
the uncorrected estimate of
the theoretical value of
The arguments i
and j
are always interpreted as
levels of the factor X$marks
. They are converted to character
strings if they are not already character strings.
The value i=1
does not
refer to the first level of the factor.
The function
The reduced sample estimator of
The spatial Kaplan-Meier estimator of
This function Gcross
and its companions
Gdot
and Gmulti
are generalisations of the function Gest
to multitype point patterns.
A multitype point pattern is a spatial pattern of points classified into a finite number of possible ``colours'' or ``types''. In the spatstat package, a multitype pattern is represented as a single point pattern object in which the points carry marks, and the mark value attached to each point determines the type of that point.
The argument X
must be a point pattern (object of class
"ppp"
) or any data that are acceptable to as.ppp
.
It must be a marked point pattern, and the mark vector
X$marks
must be a factor.
The arguments i
and j
will be interpreted as
levels of the factor X$marks
. (Warning: this means that
an integer value i=3
will be interpreted as
the number 3, not the 3rd smallest level).
The ``cross-type'' (type
An estimate of
This algorithm estimates the 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.
Biases due to edge effects are
treated in the same manner as in Gest
.
The argument r
is the vector of values for the
distance hist
)
for the computation of histograms of distances. The reduced-sample and
Kaplan-Meier estimators are computed from histogram counts.
In the case of the Kaplan-Meier estimator 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,
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
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.
Diggle, P. J. (1986). Displaced amacrine cells in the retina of a rabbit : analysis of a bivariate spatial point pattern. J. Neurosci. Meth. 18, 115--125.
Harkness, R.D and Isham, V. (1983) A bivariate spatial point pattern of ants' nests. Applied Statistics 32, 293--303
Lotwick, H. W. and Silverman, B. W. (1982). Methods for analysing spatial processes of several types of points. J. Royal Statist. Soc. Ser. B 44, 406--413.
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.
Van Lieshout, M.N.M. and Baddeley, A.J. (1999) Indices of dependence between types in multivariate point patterns. Scandinavian Journal of Statistics 26, 511--532.
# NOT RUN {
# amacrine cells data
G01 <- Gcross(amacrine)
# equivalent to:
# G01 <- Gcross(amacrine, "off", "on")
plot(G01)
# empty space function of `on' points
if(interactive()) {
F1 <- Fest(split(amacrine)$on, r = G01$r)
lines(F1$r, F1$km, lty=3)
}
# synthetic example
pp <- runifpoispp(30)
pp <- pp %mark% factor(sample(0:1, npoints(pp), replace=TRUE))
G <- Gcross(pp, "0", "1") # note: "0" not 0
# }
Run the code above in your browser using DataLab