#' Determine bigrams
#'
#' @param .data character vector of words
#'
#' @return character vector of bigrams
#'
get_bigram <- function(.data){
concat_walk(.data, c(.data[-1], NA))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.