Dear StackOverflow family,
I have been trying to put the x-axis values next to, or at the top of the peaks that are detected in the graph. Basically, first I used the function to find the peaks in the spectrum. Then, I want to use these x-axis values that coincide with the peaks, not just only putting "x", or any kind of symbol.
Thank you for any kind of help or suggestion.
The codes;
peaks, properties = find_peaks(meanMat1, prominence=1, width=4)
peak_coordinates = list(zip(Ram[peaks], a[peaks]))
print(peak_coordinates)
d=Ram[peaks]
e=c[peaks]
ax.plot(d, e, "x", color = "xkcd:orange")
(Here, d and e are the peaks that are detected. d and e give x-axis and y-axis values (in np.array), respectively.)
You can use Matplotlib
text
to add a string, or, in your particular case the x-axis values, to the Axes at location x (d
in your example), y (e
in your example) in data coordinates.