knn_zones {scanstatistics} | R Documentation |
Find the increasing subsets of k
nearest neighbors for all locations.
Description
Returns the set of increasing nearest neighbor sets for all locations, as
a list of integer vectors. That is, for each location the list returned
contains one vector containing the location itself, another containing the
location and its nearest neighbor, and so on, up to the vector containing the
location and its k-1
nearest neighbors.
Usage
knn_zones(k_nearest)
Arguments
k_nearest |
An integer matrix of with |
Value
A list of integer vectors.
Examples
nn <- matrix(c(1L, 2L, 4L, 3L, 5L,
2L, 1L, 3L, 4L, 5L,
3L, 2L, 4L, 1L, 5L,
4L, 1L, 2L, 3L, 5L,
5L, 3L, 4L, 2L, 1L),
ncol = 5, byrow = TRUE)
knn_zones(nn[, 1:3])
[Package scanstatistics version 1.1.1 Index]