Nothing
which.min.left <- function(x, tol = 1e-16){
index <- which.min(x)
if(index == 1) return(1)
if((x[index - 1] - x[index]) < tol) return(index - 1)
return(index)
}
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.