Extracts the complete cases, also known as listwise deletion.
cc(x)
is similar to
na.omit(x)
, but returns an object of the same class
as the input data. Dimensions are not dropped. For extracting
incomplete cases, use ici
.
cc(x)
An R
object. Methods are available for classes
mids
, data.frame
and matrix
. Also, x
could be a vector.
A vector
, matrix
or data.frame
containing the data of the complete cases.
# NOT RUN {
# cc(nhanes) # get the 13 complete cases
# cc(nhanes$bmi) # extract complete bmi
# }
Run the code above in your browser using DataLab