markvario {spatstat.explore} | R Documentation |
Mark Variogram
Description
Estimate the mark variogram of a marked point pattern.
Usage
markvario(X, correction = c("isotropic", "Ripley", "translate"),
r = NULL, method = "density", ..., normalise=FALSE)
Arguments
X |
The observed point pattern.
An object of class |
correction |
A character vector containing any selection of the
options |
r |
numeric vector. The values of the argument |
method |
A character vector indicating the user's choice of
density estimation technique to be used. Options are
|
... |
Other arguments passed to |
normalise |
If |
Details
The mark variogram
of a marked point process
is a measure of the dependence between the marks of two
points of the process a distance
apart.
It is informally defined as
where denotes expectation and
are the marks attached to two points of the process
a distance
apart.
The mark variogram of a marked point process is analogous, but not equivalent, to the variogram of a random field in geostatistics. See Waelder and Stoyan (1996).
Value
An object of class "fv"
(see fv.object
).
Essentially a data frame containing numeric columns
r |
the values of the argument |
theo |
the theoretical value of |
together with a column or columns named
"iso"
and/or "trans"
,
according to the selected edge corrections. These columns contain
estimates of the function
obtained by the edge corrections named.
Author(s)
Adrian Baddeley Adrian.Baddeley@curtin.edu.au and Rolf Turner rolfturner@posteo.net
References
Cressie, N.A.C. (1991) Statistics for spatial data. John Wiley and Sons, 1991.
Mase, S. (1996) The threshold method for estimating annual rainfall. Annals of the Institute of Statistical Mathematics 48 (1996) 201-213.
Waelder, O. and Stoyan, D. (1996) On variograms in point process statistics. Biometrical Journal 38 (1996) 895-905.
See Also
Mark correlation function markcorr
for numeric marks.
Mark connection function markconnect
and
multitype K-functions Kcross
, Kdot
for factor-valued marks.
Examples
# Longleaf Pine data
# marks represent tree diameter
# Subset of this large pattern
swcorner <- owin(c(0,100),c(0,100))
sub <- longleaf[ , swcorner]
# mark correlation function
mv <- markvario(sub)
plot(mv)