elbow_detection {uSORT} | R Documentation |
A elbow detection function detects the elbow/knee of a given vector of values. Values will be sorted descendingly before detection, and the ID of those values above the elbow will be returned.
elbow_detection(scores, if_plot = FALSE)
scores |
A vector of numeric scores. |
if_plot |
Boolean determine if plot the results. |
a vector of selected elements IDs
scores <- c(10, 9 ,8, 6, 3, 2, 1, 0.1) elbow_detection(scores, if_plot = TRUE)