BookmarkSubscribeRSS Feed
Stochastical
Calcite | Level 5

 I want to compare the observed vs imputed values from Proc MI. Is there an easy way to identify the imputed values in the output dataset?

1 REPLY 1
Rick_SAS
SAS Super FREQ

I assume you are talking about the data set created by the OUT= option on the PROC MI statement.

That data set does not contain a copy of the original data. It contains N copies of the imputed data.

 

If you need the original data, you could prepend it to the imputed data. Maybe set _imputation_=0 to identify it, like this:

data Original;
_imputation_ = 0;
set Original; 
run;

data All;
set Original OutMI;
run;

 

 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1340 views
  • 0 likes
  • 2 in conversation