procDist {ISAT} | R Documentation |
Extract the statistics from the result given by findNNs
Description
Extract the statistics from the result given by findNNs
Usage
procDist(distResult, thred = 30)
Arguments
distResult |
A distance result file from findNNs |
thred |
a threshold distance as cut-off |
Value
The statistics extracted from the distace result file
Examples
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)
[Package ISAT version 1.0.5 Index]