#' Find first data point not in mini ensemble event
#'
#' @param x
#'
#' @return
#' @export
#'
#' @examples
mini_find_true_end <- function(x){
vector <- ifelse(x > 10, TRUE, FALSE)
first_less_10 <- min(which(vector == FALSE))
return(first_less_10)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.