Learn R Programming

tbart (version 1.0)

tb: Teitz-Bart algorithm applied to Spatial* and Spatial*DataFrame objects

Description

This reports the $p$-median set

Usage

tb(swdf1, swdf2, p, metric, verbose = FALSE)

Arguments

swdf1
- first Spatial* or Spatial*DataFrame objects - the 'demand' set
swdf2
- second Spatial* or Spatial*DataFrame objects - the 'supply' set (if omitted, defaults to the same value as swdf1)
p
- either a guess at the initial $p$-median set of a single integer indicating the size of the set (which is then chosen randomly)
metric
- the distance matrix (defaults to Euclidean computed via euc.dists(swdf1,swdf2) if not supplied)
verbose
- if TRUE print out each swap in the algorithm (default is FALSE)

Value

Set of point indices for $p$-median (may be local optimum)

Examples

Run this code
data(meuse)
coordinates(meuse) <- ~x+y
tb(meuse,p=5)

Run the code above in your browser using DataLab