#' notin operator
#'
#' @param x vector or NULL
#' @param y vector or NULL
#'
#' @return
#' @export
#'
#' @examples
#' c(1,3,11) %notin% 1:10
'%notin%' <- function(x,y){
!('%in%'(x,y))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.