mice (version 3.3.0)

cci: Complete case indicator

Description

The complete case indicator is useful for extracting the subset of complete cases. The function cci(x) calls complete.cases(x). The companion function ici() selects the incomplete cases.

Usage

cci(x)

Arguments

x

An R object. Currently supported are methods for the following classes: mids.

Value

Logical vector indicating the complete cases.

See Also

complete.cases, ici, cc

Examples

Run this code
# NOT RUN {
cci(nhanes) # indicator for 13 complete cases 
cci(mice(nhanes, maxit = 0))
f <- cci(nhanes[,c("bmi","hyp")]) # complete data for bmi and hyp
nhanes[f,] # obtain all data from those with complete bmi and hyp
# }

Run the code above in your browser using DataLab