Compute the ‘elbow’ for a curve automatically and mathematically
I created a Python package that attempts to implement the Kneedle algorithm. To recreate the function above and detect the point of maximum curvature: x = range(1,21) y = [0.065, 0.039, 0.030, 0.024, 0.023, 0.022, 0.019, 0.0185, 0.0187, 0.016, 0.015, 0.016, 0.0135, 0.0130, 0.0125, 0.0120, 0.0117, 0.0115, 0.0112, 0.013] kn = KneeLocator( x, y, curve=”convex”, … Read more