powered by
Given the locations of different objects, this function determines the distance of the nearest neighboring object to each object.
nnd(x, y, geo = FALSE)
A vector of the same length as x and y representing the distance to the nearest neighboring object for each object.
A vector of x (or longitude) coordinates.
A vector of y (or latitude) coordinates.
A logical value indicating whether the locations are defined by geographic coordinates (pairs of longitude/latitude values). Default: FALSE.
Simon Garnier, garnier@njit.edu
nn
x <- rnorm(25) y <- rnorm(25, sd = 3) id <- 1:25 nnd(x, y)
Run the code above in your browser using DataLab