#' Count NA values
#'
#' \code{count_na} counts NA values
#'
#' Adapted from https://sebastiansauer.github.io/sum-isna/
count_na <- function(df) {
df %>% purrr::map_df(~sum(is.na(.)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.