Pythagorean distance between two points. Called internally.

pdist(p1, p2)

Arguments

p1

X-Y coordinates of point 1

p2

X-Y coordinates of point 2

Value

Distance (numeric)

Examples

point1 <- c(1,3) point2 <- c(4,7) pdist(point1,point2)
#> [1] 5