#' A "not in" operator for vectors
#'
#' @return A vector T/F values according to inclusion/exclusion
#'
#' @param a The first vector
#' @param b The second vector
#'
#' @examples
#' notin(a, b)
#' a %notin% b
#' # Is the same as !(a %in% b)
#'
#' @export
notin <- function(a, b){
!(a %in% b)
}
`%notin%` <- function(a, b){!(a %in% b)}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.