Nearest neighbour structure for a data set
This function can be used to generate nearest neighbour information for a set of 2D data points.
nearest.neighbours(x, y)
x |
vector containing x ccordinates of points. |
y |
vector containing x ccordinates of points. |
A list with two components
index |
A matrix with one row per data point. Each row contains the indices of the nearest neigbours to the point associated with this row, currently the point itself is also listed in the first row, so this matrix is of dimension n times n (will change to n times n-1 later). |
dist |
A matrix containing the distances according to the neigbours listed
in component |
Albrecht Gebhardt <albrecht.gebhardt@aau.at>, Roger Bivand <roger.bivand@nhh.no>
data(franke) ## use only a small subset fd <- franke$ds1[1:5,] nearest.neighbours(fd$x,fd$y)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.