any_isolated {pald} | R Documentation |
Any isolated
Description
Checks for isolated points.
Usage
any_isolated(c)
Arguments
c |
A |
Value
Logical, indicating whether any points are isolated.
Examples
d <- data.frame(
x1 = c(1, 2, 3, 6),
x2 = c(2, 1, 3, 10)
)
D <- dist(d)
C <- cohesion_matrix(D)
any_isolated(C)
[Package pald version 0.0.4 Index]