Hi, I have perhaps a simple question: is it possible to include in a mi model, say, var1 (that has missings) to help impute var2, but without actually imputing var1 itself? Ie, I'd want to use var1 to help fill in the missing values for var2 but without filling in any missing values for var1.
As an example:
The variable bmi is also in the dataset, and has missings--is there a way to include it to impute age but without imputing BMI?
As an example:
Code:
webuse mheart5, clear mi set mlong mi register imputed age bmi attack smokes hsgrad female mi impute chained (regress) age = attack smokes hsgrad female, add(5) rseed(100)
Comment