|
Chapter Contents |
Previous |
Next |
| The MI Procedure |
This example uses the propensity score method to impute missing values in a data set with a monotone missing pattern. The following statements invoke the MI procedure and request the propensity score method. The resulting data set is named outpscore.
proc mi data=FitMono seed=55417 simple out=outpscore;
monotone method=propensity;
var Oxygen RunTime RunPulse;
run;
Note that the VAR statement is required and the data set must have a monotone missing pattern with variables as ordered in the VAR statement. The procedure generates the following output:
Output 9.2.1: Model Information
| |||||||||||||
The "Model Information" table describes the method and options used in the multiple imputation process. By default, the observations are sorted into five groups based on the propensity scores, and five imputations are created for the missing data.
Output 9.2.2: Missing Data PatternsThe "Missing Data Patterns" table lists distinct missing data patterns with corresponding frequencies and percents. Here, "X" means that the variable is observed in the corresponding group and "." means that the variable is missing. The table also displays group-specific variable means.
Output 9.2.3: Variance Information
| ||||||||||||||||||||||||||||||||
After the completion of m imputations, the "Multiple Imputation Variance Information" table displays the between-imputation variance, within-imputation variance, and total variance for combining complete-data inferences. It also displays the degrees of freedom for the total variance. The relative increase in variance due to missingness and the fraction of missing information for each variable are also displayed. A detailed description of these statistics is provided in the "Combining Inferences from Multiply Imputed Data Sets" section.
The "Multiple Imputation Parameter Estimates" table displays the estimated mean and standard error of the mean for each variable. The inferences are based on the t-distributions. For each variable, the table also displays a 95% mean confidence interval and a t-statistic with the associated p-value for the hypothesis that the population mean is equal to the value specified in the MU0= option, which is zero by default.
Output 9.2.4: Parameter Estimates
| |||||||||||||||||||||||||||||||||||||||||||||
The following statements list the first ten observations of the data set outpscore.
proc print data=outpscore(obs=10);
title 'First 10 Observations of the Imputed Data Set';
run;
Output 9.2.5: Imputed Data Set
|
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 2001 by SAS Institute Inc., Cary, NC, USA. All rights reserved.