Last chance! 50% off unlimited learning
Sale ends in
## S3 method for class 'ppx':
crossdist(X, Y, \dots)
"ppx"
).coords.ppx
to determine
which coordinates should be used.[i,j]
entry is the distance
from the i
-th point in X
to the j
-th point in Y
. This is a method for the generic function crossdist
for three-dimensional point patterns (objects of class "ppx"
).
This function expects two multidimensional
point patterns X
and Y
, and returns the matrix
whose [i,j]
entry is the distance from X[i]
to
Y[j]
.
By default, both spatial and temporal coordinates are extracted.
To obtain the spatial distance between points in a space-time point
pattern, set temporal=FALSE
.
crossdist
,
pairdist
,
nndist
df <- data.frame(x=runif(3),y=runif(3),z=runif(3),w=runif(3))
X <- ppx(data=df)
df <- data.frame(x=runif(5),y=runif(5),z=runif(5),w=runif(5))
Y <- ppx(data=df)
d <- crossdist(X, Y)
Run the code above in your browser using DataLab