`
import numpy as np
import matplotlib.pyplot as plt
x = np.array([3900.06,3900.16,3900.26])
y = np.array([0.311254,0.588623,0.724301])
if min(y):
print(x[min(y)])`
maybe someone can help me with the following problem: I'm searching for the x point where the point y is at minimum. enter image description here
Thanks, for any kind of help :)