markcrosscorr {spatstat.explore} | R Documentation |
Mark Cross-Correlation Function
Description
Given a spatial point pattern with several columns of marks, this function computes the mark correlation function between each pair of columns of marks.
Usage
markcrosscorr(X, r = NULL,
correction = c("isotropic", "Ripley", "translate"),
method = "density", ..., normalise = TRUE, Xname = NULL)
Arguments
X |
The observed point pattern.
An object of class |
r |
Optional. Numeric vector. The values of the argument |
correction |
A character vector containing any selection of the
options |
method |
A character vector indicating the user's choice of
density estimation technique to be used. Options are
|
... |
Arguments passed to the density estimation routine
( |
normalise |
If |
Xname |
Optional character string name for the dataset |
Details
First, all columns of marks are converted to numerical values.
A factor with possible levels is converted to
columns of dummy (indicator) values.
Next, each pair of columns is considered, and the mark cross-correlation is defined as
where denotes the conditional expectation
given that there are points of the process at the locations
and
separated by a distance
.
On the numerator,
and
are the marks attached to locations
and
respectively
in the
th and
th columns of marks respectively.
On the denominator,
and
are
independent random values drawn from the
th and
th columns of marks, respectively,
and
is the usual expectation.
Note that is not a “correlation”
in the usual statistical sense. It can take any
nonnegative real value. The value 1 suggests “lack of correlation”:
if the marks attached to the points of
X
are independent
and identically distributed, then
.
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.
The cross-correlations are estimated in the same manner as
for markcorr
.
Value
A function array (object of class "fasp"
) containing
the mark cross-correlation functions for each possible pair
of columns of marks.
Author(s)
Adrian Baddeley Adrian.Baddeley@curtin.edu.au, Rolf Turner rolfturner@posteo.net and Ege Rubak rubak@math.aau.dk.
See Also
Examples
# The dataset 'betacells' has two columns of marks:
# 'type' (factor)
# 'area' (numeric)
if(interactive()) plot(betacells)
plot(markcrosscorr(betacells))