Nothing
"getRidgeLength" <-
function(ridgeList, Th=0.5) {
ridgeLen <- sapply(ridgeList, function(x) {
m <- max(x)
l <- length(x)
while(l > 1) {
if (x[l] > m * Th) break
l <- l - 1
}
return(l)
} )
return(ridgeLen)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.