#' Aggregate logical function
#' @description Returns TRUE if all values in a logical vector are TRUE
#' @export
all_true <-
function(vector) {
all(vector == TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.