Distance-based measure using events locations: however there are \(n(n-1)/2\) inter-event distances to check for the \(n\) nearest neighbour distances so is computationally intensive. To deal with computationally this a tesselation or triangulation is used usually.
Delauney/Voronoi tesslation: the Dirichlet tile associated with point \(Z(s_i)\) is the region of space that is closer to \(Z(s_i)\) than to any other point in \(Z(s)\).
Delauney triangulation: 1) Construct the Dirchlet/Voronoi tesselation, 2) Two points are Delauney neighbours if their Dirchlet/Voronoi tiles share a common boundary. This results in a tesselation of disjoint triangles (the union of the triangles is the convex hull).
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 899.3 1810.4 2174.8 3515.4 2892.0 36118.0
## Tessellation
## Tiles are irregular polygons
## 7 tiles (irregular windows)
## window: polygonal boundary
## enclosing rectangle: [113.19392, 153.6692] x [-43.59316, -10.93156] units
## Length Class Mode
## type 1 -none- character
## window 5 owin list
## tiles 7 -none- list
## n 1 -none- numeric
## List of spatial objects
##
## FALSE:
## window: binary image mask
## 100 x 100 pixel array (ny, nx)
## enclosing rectangle: [0.5, 100.5] x [0.5, 100.5] units
##
## TRUE:
## window: binary image mask
## 100 x 100 pixel array (ny, nx)
## enclosing rectangle: [0.5, 100.5] x [0.5, 100.5] units
## Tessellation
## Tiles are windows of general type
## 1894 tiles (irregular windows)
## window: rectangle = [0, 100] x [0, 100] units
\(F(r) = P[\rho(a,x) \le r]\): the probability of observing at least one point closer than \(r\) to the arbitrary point \(a\) (not necessarily a point of the pattern). If the estimate is smaller than CSR (\(F(r) = 1- e^{-\pi \lambda r^2}\)) then the points are clustered, if larger than CSR then the points are regular.
\(1-F (r)\) is the probability that a randomly placed disk with radius \(r\) does not contain a point.
An empirical estimate of the probability that the nearest-neighbour distance is at most \(r_0\): \[\hat{G}(r_0) = \frac{\#(r_i-r_0)}{n}.\] If the estimate is larger than CSR (\(G(r) = 1- e^{-\pi \lambda r^2}\)) then the points are clustered, if smaller than CSR then the points are regular.
\(1-G(r)\) is the probability that a disk with radius \(r\) centered at a randomly selected point does not contain a further point.