#' Pipe operator
#'
#' See \code{\link[magrittr]{\%>\%}} for more details.
#'
#' @name %>%
#' @rdname pipe
#' @keywords internal
#' @export
#' @importFrom magrittr %>%
#' @examples{
#'
#' iris %>% as.matrix()
#'}
NULL
# Negates match operator
#'
#' This function negates the macth operator.
#'
#' @name not_in
#' @keywords internal
#' @export
#' @examples{
#' a <- "a"
#' ab <- c("a", "b")
#' not_in(a, ab)
#'}
not_in <- function(x,y)!('%in%'(x,y))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.