#' @export
findingCL = function(x,y,m=7,sz=c(65,110)){
yi = findPeaks(y,m=m)
xi = x[yi]
xii = which(xi>sz[1] & xi<sz[2])
yii = yi[min(xii)]
return(c(index=yii,x=x[yii]))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.