R/AllGenerics.R
R/euclidean-methods.R
euclidean.Rd
Calculate Euclidean distance
euclidean(x, ...) # S4 method for numeric euclidean(x, y)
Object.
Additional arguments.
numeric.
numeric
Updated 2023-09-11.
https://www.statology.org/euclidean-distance-in-r/
## numeric ==== x <- seq(from = 1L, to = 5L, by = 1L) y <- seq(from = 6L, to = 10L, by = 1L) euclidean(x = x, y = y) #> [1] 11.18034