Multiple inputations.

Parameters:
See dedicated page for more information.
See dedicated page for more information.
The R_MultipleImputations action button handles missing data in tabular datasets using Multiple Imputation by Chained Equations (MICE). This advanced statistical method generates multiple plausible datasets with imputed values to improve the reliability of downstream analyses.
The action uses the mice R package to generate several imputed versions of the original dataset. It creates these by iteratively modeling each variable with missing data as a function of other variables. This method captures the uncertainty of the imputed values and maintains the relationships in the data.

NA, blank, or empty cells.| Parameter | Type | Description |
|---|---|---|
Columns to impute |
List | Specify the columns to be imputed. If empty, all columns with missing values will be imputed. |
Number of imputed datasets |
Integer | The number of separate imputations to create (m). Default: 5. |
Maximum iterations |
Integer | Maximum number of iterations used to build the imputation model. Default: 5. |
Method |
String | Optional: Force a specific imputation method for all columns (e.g., pmm, norm, logreg). Leave blank to auto-select based on data type. |
Seed |
Integer | Optional: Random seed for reproducibility of results. |

✅ Missing values should be visible in the selected columns to observe the effect of the imputation.
m > 1, the result will contain multiple rows for each original row, identified using the .imp column.
Each row of the output belongs to one of the multiple imputations, and the .imp column indicates which imputation set it belongs to.
logreg (binary) or polyreg (polytomous).m too low — use m = 5 or more for statistically robust results.