What I want to get is the point, (x, y)
, where the y value getting smoother for given x and y values.
For example,
x = range(10)
y = [0.3, 0.37, 0.41, 0.52, 0.64, 0.68, 0.71, 0.72, 0.73, 0.74]
plt.plot(x, y)
I want to get the red-circle point (or near point) where the graph starts getting stable.
How can I do this?