Learn R Programming

snht (version 1.0.5)

getPairs: Gets Pairs from Distances

Description

For each location, we wish to determine the k closest locations. This function takes the distance matrix and computes the returns a list of the k closest locations to each individual location.

Usage

getPairs(dist, k)

Arguments

dist

The distance matrix describing the distance between locations.

k

The number of closest neighbors to be located for each lcoation.

Value

A named list. Each element of the list corresponds to a particular location, and the value at element i is the k closest locations to location i.