The MI Procedure
Example 76.3 Monotone Regression Method
(View the complete code for this example.)
This example uses the regression method to impute missing values for all variables in a data set with a monotone missing pattern. The following statements invoke the MI procedure and request the regression method for the variable Length2 and the predictive mean matching method for variable Length3. The resulting data set is named Outex3.
proc mi data=Fish1 round=.1 mu0= 0 35 45
seed=13951639 nimpute=8 out=outex3;
monotone reg(Length2/ details)
regpmm(Length3= Length1 Length2 Length1*Length2/ details);
var Length1 Length2 Length3;
run;
The ROUND= option is used to round the imputed values to the same precision as observed values. The values specified with the ROUND= option are matched with the variables Length1, Length2, and Length3 in the order listed in the VAR statement. The MU0= option requests t tests for the hypotheses that the population means corresponding to the variables in the VAR statement are Length2=35 and Length3=45.
The "Missing Data Patterns" table lists distinct missing data patterns with corresponding frequencies and percentages. It is identical to the table in Output 76.2.3 in Example 76.2.
The "Monotone Model Specification" table in Output 76.3.1 displays the model specification.
Output 76.3.1: Monotone Model Specification
When you use the DETAILS option, the parameters estimated from the observed data and the parameters used in each imputation are displayed in Output 76.3.2 and Output 76.3.3.
Output 76.3.2: Regression Model
Output 76.3.3: Regression Predicted Mean Matching Model
| Regression Models for Monotone Predicted Mean Matching Method | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Imputed Variable | Effect | Obs Data | Imputation | |||||||
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | |||
| Length3 | Intercept | -0.01304 | 0.004134 | -0.011417 | -0.034177 | -0.010532 | 0.004685 | -0.013917 | 0.012658 | -0.020144 |
| Length3 | Length1 | -0.01332 | 0.025320 | -0.037494 | 0.308765 | 0.156606 | -0.147118 | 0.097745 | -0.254054 | 0.086950 |
| Length3 | Length2 | 0.98918 | 0.955510 | 1.025741 | 0.673374 | 0.828384 | 1.146440 | 0.860564 | 1.226015 | 0.879854 |
| Length3 | Length1*Length2 | -0.02521 | -0.034964 | -0.022017 | -0.017919 | -0.029335 | -0.034671 | -0.023384 | -0.023829 | -0.026785 |
After the completion of eight imputations (NIMPUTE=8), the "Variance Information" table in Output 76.3.4 displays the between-imputation variance, within-imputation variance, and total variance for combining complete-data inferences. The relative increase in variance due to missingness, the fraction of missing information, and the relative efficiency for each variable are also displayed. These statistics are described in the section Combining Inferences from Multiply Imputed Data Sets.
Output 76.3.4: Variance Information
The "Parameter Estimates" table in Output 76.3.5 displays a 95% mean confidence interval and a t statistic with its associated p-value for each of the hypotheses requested with the MU0= option.
Output 76.3.5: Parameter Estimates
The following statements list the first 10 observations of the data set Outex3 in Output 76.3.6. Note that the imputed values of Length2 are rounded to the same precision as the observed values.
proc print data=outex3(obs=10); title 'First 10 Observations of the Imputed Data Set'; run;
Output 76.3.6: Imputed Data Set
Copyright © SAS Institute Inc. All rights reserved.