Nothing
## 2014-11-10 new file
isNA <- function(x){ # 2014-11-10 return TRUE if x is a single NA value and FALSE otherwise.
is.atomic(x) && length(x) == 1 && is.na(x)
}
## similar code used internally in package Rdpack, e.g. is.missing.arg in parse_pairlist
missing_arg <- function(arg)
typeof(arg) == "symbol" && deparse(arg) == ""
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.