proc mi data=CS seed=1033 simple out=monotone nimpute=10 round=0.1;
title "Monotone imputation";
var **bleep**e sex time smoking bmi;
mcmc impute=monotone;
run;
/*** Imputing NCMV ***/
proc mi data=monotone seed=1033 simple out=monotone2 nimpute=1;
title "Model multiple imputation";
class smoking sex;
monotone reg(bmi=smoking **bleep**e time sex);
monotone logistic(smoking=bmi **bleep**e time sex);
mnar model(bmi smoking / modelobs=ncmv);
var **bleep**e sex bmi smoking time;
run;
Hello, please am trying to do multiple imputation, under the NCMV assumption, the first set of code runs pretty fine, but the second one sends me an error that the SMOKING VARIABLE IS NOT IN THE VAR LIST, what can I do please?