#' Combines logical vectors using and
#'
#' @param x logical vector 1
#' @param y logical vector 2
#'
#' @return
#' @export
#'
#'
combineAND <- function(x, y) {
z <- c()
for(i in 1:length(x)) {
z <- c(z, x[i] && y[i])
}
z
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.