This function checks each element of a data frame or list-like object
for missing values (NA) and identifies those that are completely
observed, i.e., contain no missing entries.
Usage
completeColumns(x, output = c("names", "logical"))Value
if output = "names", a character vector with the names of all
complete elements.
If output = "logical", a logical vector of length
length(x), where TRUE indicates that the corresponding
element contains no missing values.
Details
An element is considered complete if it contains zero missing
values. Internally, the function uses anyNA() to detect
missing values.
See also
anyNA(), is.na(),
na.omit(), complete.cases()
Other data.missing:
countCompCases()
