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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 1314 views
  • 0 likes
  • 2 in conversation