#' Length Unique
#'
#' @description Get the length of unique values in a vector
#' @param x vector
#' @keywords helper
#' @export
lenu <- function(x) {
length(unique(x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.