#' @title sum of the na number in df
#' @description sum of the na number in df
#' @param df dataframe
#'
#' @return dataframe
#'
#' @examples
#'
#'
#' @rdname na_numb_sum
#' @export
na_numb_sum <- function(df) {
df %>%
purrr::map(~ is.na(.x) %>% sum()) %>%
unlist() %>%
sum()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.