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