I have two versions of the same data set..same variable names, Data set A1 has missing values, Data set A2 has missing values filled in. I need to produce a third data set, A3 which has contains only the "filled in" values from data set A2 and missing values in all other spaces. For example I need to produce A3 as follows
Data set A1
X1 X2 X3
1 10 20
. 11 .
3 . 22
Data Set A2
X1 X2 X3
1 10 20
2 11 21
3 12 22
Data Set A3
X1 X2 X3
. , .
2 . 21
. 12 .
Is there a way to do this using Proc SQL or any other ideas? Thanks for any suggestions.
PS I'm using PROC MI to create imputation data sets and I'd like to examine only the values that have been imputed for each variable. In my actual data set I have about 300 variables for which I need to compute original values and only the imputed values.