Takes an object of class mids
, fills in the missing data, and returns
the completed data in a specified format.
# S3 method for mids complete(data, action = 1L, include = FALSE, mild = FALSE, ...)
data | An object of class |
---|---|
action | A numeric vector or a keyword. Numeric
values between 1 and |
include | A logical to indicate whether the original data with the missing values should be included. |
mild | A logical indicating whether the return value should
always be an object of class |
... | Additional arguments. Not used. |
Complete data set with missing values replaced by imputations.
A data.frame
, or a list of data frames of class mild
.
The argument action
can be length-1 character, which is
matched to one of the following keywords:
"all"
produces a mild
object of imputed data sets. When
include = TRUE
, then the original data are appended as the first list
element;
"long"
produces a data set where imputed data sets
are stacked vertically. The columns are added: 1) .imp
, integer,
referring the imputation number, and 2) .id
, character, the row
names of data$data
;
"stacked"
same as "long"
but without the two
additional columns;
"broad"
produces a data set with where imputed data sets are stacked horizontally. Columns are ordered as in the original data. The imputation number is appended to each column name;
"repeated"
same as "broad"
, but with
columns in a different order.
Technical note: mice 3.7.5
renamed the complete()
function
to complete.mids()
and exported it as an S3 method of the
generic tidyr::complete()
. Name clashes between
mice::complete()
and tidyr::complete()
should no
longer occur.
#> [1] 27#> [1] 0# obtain stacked third and fifth imputation dat <- complete(imp, c(3, 5)) # obtain all datasets, with additional identifiers head(complete(imp, "long"))#> .imp .id age bmi hyp chl #> 1 1 1 20-39 29.6 no 187 #> 2 1 2 40-59 22.7 no 187 #> 3 1 3 20-39 29.6 no 187 #> 4 1 4 60-99 24.9 no 218 #> 5 1 5 20-39 20.4 no 113 #> 6 1 6 60-99 22.7 no 184#> [1] 5# same, but also include the original data dslist <- complete(imp, "all", include = TRUE) length(dslist)#> [1] 6# select original + 3 + 5, store as mild dslist <- complete(imp, c(0, 3, 5), mild = TRUE) names(dslist)#> [1] "0" "3" "5"