getMaxima | R Documentation |
A vector of booleans is returned with the same length as input which contains TRUE when there is a maximum. Simply sum up the vector to get the number of maxima.
getMaxima(x, thresh_rel = 0.2)
x |
Vector of numbers |
thresh_rel |
Minimum relative intensity to maximum intensity of 'x' required to be a maximum (i.e., a noise threshold). Default is 20%. |
Vector of bool's, where TRUE indicates a local maximum.
r = getMaxima(c(1,0,3,4,5,0))
all(r == c(TRUE,FALSE,FALSE,FALSE,TRUE,FALSE))
getMaxima(c(1, NA, 3, 2, 3, NA, 4, 2, 5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.