procDist {ISAT} | R Documentation |
Extract the statistics from the result given by findNNs
procDist(distResult, thred = 30)
distResult |
A distance result file from findNNs |
thred |
a threshold distance as cut-off |
The statistics extracted from the distace result file
Cell.X.Position=sample(1:1000, 20, replace=TRUE)
Cell.Y.Position=sample(1:1000, 20, replace=TRUE)
distance = runif(20,min=0,max=100)
distResult = data.frame (Cell.X.Position,Cell.Y.Position,distance)
thred=30
procDist(distResult,thred)