#' Cross tabulation with NAs included by default
#'
#' @param ... Arguments passed to [table()].
#'
#' @return A [table()] object.
#' @export
table_na <- function(...) {
table(..., useNA = "ifany")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.