If I have a data set that produces a graph such as the following, how would I algorithmically determine the x-values of the peaks shown (in this case three of them):

|
If I have a data set that produces a graph such as the following, how would I algorithmically determine the x-values of the peaks shown (in this case three of them):
|
|||||||||||||||
|
|
A general approach is to smooth the data and then find peaks by comparing a local maximum filter to the smooth. In
Its return value includes the arguments of the local maxima ( There are two parameters to be tuned to the circumstances: To see this tuning in effect, let's create a little test function to plot the results:
Here are a few experiments applied to some synthetic, slightly noisy data.
Either a wide window (middle plot) or more aggressive smooth (bottom plot) eliminate the local maxima detected in the top plot. The best combination here is likely a wide window and only gentle smoothing, because aggressive smoothing appears to shift these peaks (see the middle and right points in the bottom plot and compare their locations to the apparent peaks of the raw data). In this example, Notice the local maxima at the endpoints are not detected. These can be inspected separately. (To support this, This approach has several advantages over more formal modeling for general purpose work:
|
|||||||||||||||||||||
|
|
As I mentioned in comment if the time series appears to be periodic fitting a harmonic regression model provides a way to smooth the function and identify the peak by applying the first and second derivative tests. Huber has pointed out a nonparametric test that has advantages when there are multiple peaks and the function is not necessarily periodic. But there is no free lunch. While there are the advantages to his method that he mentions there can be disadvantages if a parametric model is appropriate. That is always the flip side to using nonparametric techniques. Although it avoids parametric assumptions, the parametric approach is better when the parametric assumptions are appropriate. His procedure also does not take full advantage of the time series structure in the data. My approach does but relies on a specific form for the model that assumes periodicity. I think that while it is appropriate to point out advantages of a suggested procedure it is also important to point out the potential disadvantages. Both my approach and Huber's find the peaks in an efficient manner. However I think his procedure takes a little more work when a local maximum is lower than the previously determined highest peak. |
|||||||||||||||
|
|
A classic peak detection approach in signal processing is as follows:
Another approach that works is to compare a sharply highpass filtered signal against a heavily smoothed (low-pass or median filtered) and apply step 3. Hope this helps. |
||||
|
|