peaks | R Documentation |
Find peak amplitudes in a time series signal.
peaks(series, span = 3, do.pad = TRUE)
series |
signal |
span |
span for window |
do.pad |
padding |
This function originated in a note from Brian Ripley.
vector of peak indexes
Brian Ripley
data(CE1)
plot(CE1$x, CE1$y, type='l')
pp <- seq(from=53, to=80, by=1)
plot(CE1$x[pp], CE1$y[pp], type='l')
aa <- peaks(CE1$y[pp], span=3)
abline(v=CE1$x[pp[aa]], col='red')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.