| find_knee_point | R Documentation |
Simple knee point detection using the maximum curvature method
find_knee_point(y, sensitivity = 1)
y |
Numeric vector of y values |
sensitivity |
Sensitivity parameter (not used in this simple implementation) |
Index of the knee point
y <- c(1, 2, 3, 10, 11, 12) # curve with a knee
knee_idx <- find_knee_point(y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.