Open jonathanjfshaw opened 4 years ago
Local detect This algo handles each sample individually with internal states (last_peak, last_valley and whereas it is "looking for a peak").
Rolling Detect This algo is actually equivalent to the local max function of scipy. It needs to buffer values over a window to decide on a local extrema.
Tell me if it makes sense and what you suggest for the doc. Otherwise, I'd close this issue, since it's not quite one.
The docs for LocalDetect say:
Those for RollingDetect say:
I've read the code for RollingDetect more than once, but I don't find it easy to see how it works and how it is different to LocalDetect.
If someone can tell me, I can improve the docs.