Nothing
#' Simply a negated \code{in} operator.
#'
#' @param x [\code{vector}]\cr
#' Values that should not be in \code{y}.
#' @param y [\code{vector}]\cr
#' Values to match against.
#' @usage x \%nin\% y
#' @rdname nin
#' @export
`%nin%` = function(x, y) {
!match(x, y, nomatch = 0L)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.