#' Get n-gram frequencies (case insensitive version)
#'
#' @param phrases vector of phrases
#' @param aggregate sum up each of the terms
#' @param ... remaining parameters passed to ngram
#' @description
#' This function is a simple wrapper of `ngram` for case insensitive searches.
#' @export
ngrami <- function(phrases, aggregate = TRUE, ...){
ngram(phrases, aggregate = aggregate, case_ins = TRUE, drop_all = TRUE, ...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.