#' Nram generator
#'
#' @keywords internal
#' @export
ngram <- function(x, n, n_min, delim) {
n <- as.integer(n)
n_min <- as.integer(n_min)
.Call(ffi_ngram, x, n, n_min, delim)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.