A data scientist is analyzing a dataset with missing values. The missing data mechanism is missing at random (MAR). Which imputation method is most appropriate to preserve relationships between variables?
MICE models each variable with missing values conditional on others, suitable for MAR.
Why this answer
Multiple imputation by chained equations (MICE) is well-suited for missing at random (MAR) data as it models each variable with missing values conditional on other variables, preserving relationships. Option A (removing rows) reduces sample size and can introduce bias if data are not MCAR. Option B (KNN) assumes data are missing completely at random (MCAR) and may not handle MAR well.
Option D (mean imputation) reduces variance and distorts relationships.