

   NNoott AAvvaaiillaabbllee // ````MMiissssiinngg'''' VVaalluueess

        NA
        is.na(x)
        is.na.data.frame(x)

   DDeessccrriippttiioonn::

        `NA' is a logical constant of length 1 which contains a
        missing value indicator.  `NA' can be freely coerced to
        any other vector type.

        The generic function `is.na' returns a logical vector
        of the same ``form'' as its argument `x', containing
        `TRUE' for those elements marked `NA' or `NaN' (!) and
        `FALSE' otherwise.  `dim', `dimnames' and `names'
        attributes are preserved.

        The method dispatching is C-internal, rather than via
        `UseMethod'.

   SSeeee AAllssoo::

        `NaN', `is.nan', etc.  and the utility function `com-
        plete.cases'.

        `na.action', `na.omit', `na.fail' on how methods can be
        tuned to deal with missing values.

   EExxaammpplleess::

        is.na(c(1,NA))       #> F TRUE
        is.na(paste(c(1,NA)))#> F FALSE

