md.pattern {mice} | R Documentation |
Display missing-data patterns.
md.pattern(x)
x |
A data frame or a matrix containing the incomplete data. Missing values are coded as NA's. |
This function is useful for investigating any structure of missing observation in the data. In specific case, the missing data pattern could be (nearly) monotone. Monotonicity can be used to simplify the imputation model. See Schafer (1997) for details. Also, the missing pattern could suggest which variables could potentially be useful for imputation of missing entries.
A matrix with ncol(x)+1
columns, in which each row corresponds to
a missing data pattern (1=observed, 0=missing).
Rows and columns are sorted in increasing amounts of missing
information. The last column and row contain row and column counts,
respectively.
Stef van Buuren, Karin Oudshoorn, 2000
Schafer, J.L. (1997), Analysis of multivariate incomplete data. London: Chapman&Hall.
data(nhanes) md.pattern(nhanes) # age hyp bmi chl # 13 1 1 1 1 0 # 1 1 1 0 1 1 # 3 1 1 1 0 1 # 1 1 0 0 1 2 # 7 1 0 0 0 3 # 0 8 9 10 27