MICE (mice)
Module name |
|
Package |
|
Version |
3.17.0 |
Language |
|
Docs |
|
Paper |
van Buuren and Groothuis-Oudshoorn[1] |
Graph type |
|
MCMC |
No |
Edge constraints |
No |
Data type |
C, D, M |
Data missingness |
|
Intervention type |
|
Docker |
Multivariate Imputation by Chained Equations
The mice package implements a method to deal with missing data. The package creates multiple imputations (replacement values) for multivariate missing data. The method is based on Fully Conditional Specification, where each incomplete variable is imputed by a separate model. The MICE algorithm can impute mixes of continuous, binary, unordered categorical and ordered categorical data. In addition, MICE can impute continuous two-level data, and maintain consistency between imputations by means of passive imputation.
Important
This is not a structure learning algorithm, just a workaround to use imputed data for the bips_tpc module.
Some fields described
actionParameter for the complete functiondefaultMethodParameter for the complete function: Default method to use for imputationincludeParameter for the complete functionmParameter for the mice function: Number of imputationsmaxitParameter for the mice function: Maximum number of iterationsmethodParameter for the complete function: Method to use for imputationmildParameter for the complete functionorderParameter for the complete function
Example JSON
[
{
"id": "mice",
"m": 5,
"maxit": 3,
"method": "rf",
"defaultMethod": "rf",
"action": "all",
"include": false,
"mild": true,
"order": "last",
"timeout": null
}
]