Good afternoon,
I´m using multiple imputation on three variables:
The first and the last one are binary variables and the Number_Employed_hh is a continuous one.
Even though it gives me a total for the Females_hh of 819 observations, which is what I want, when I tab this variable the number of observations is bigger. Can someone explain me what I´m doing wrong? Thanks
I´m using multiple imputation on three variables:
Code:
Females_hh Number_Employed_hh AtLeastSecondary_hh
Code:
mi set mlong
. mi register imputed Females_hh
(162 m=0 obs now marked as incomplete)
mi impute logit Females_hh i.Health_Number YSM, add(20) rseed(1234)
Univariate imputation Imputations = 20
Logistic regression added = 20
Imputed: m=1 through m=20 updated = 0
------------------------------------------------------------------
| Observations per m
|----------------------------------------------
Variable | Complete Incomplete Imputed | Total
-------------------+-----------------------------------+----------
Females_hh | 657 162 162 | 819
------------------------------------------------------------------
(Complete + Incomplete = Total; Imputed is the minimum across m
of the number of filled-in observations.)
Note: Right-hand-side variables (or weights) have missing values;
model parameters estimated using listwise deletion.
Code:
tab Females_hh
Females_hh | Freq. Percent Cum.
------------+-----------------------------------
0 | 1,693 31.72 31.72
1 | 3,644 68.28 100.00
------------+-----------------------------------
Total | 5,337 100.00

Comment