find_all_nas <- function(v) {
(is.na(unname(v))) |
(is.nan(unname(v))) |
(as.character(unname(v)) == "NA_character_") |
(as.character(unname(v)) == "nan") |
(tolower(as.character(unname(v))) == "na") |
(tolower(as.character(unname(v))) == "n/a")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.