Good day all,
I used multiple imputation for missing wages in my data, as such I set the data as MI. This is confirmed by using the following code:
and obtaining the following output
However, I am running into problems when using the DASP package, which is the suggested package to use when undertaking poverty and inequality analysis. I set the weight using the following code:
However when I try to obtain, for example, a headcount ratio, I get the following error message:
I used multiple imputation for missing wages in my data, as such I set the data as MI. This is confirmed by using the following code:
Code:
mi set
Code:
data mi set wide, M = 10 last mi update 04jun2024 12:47:52, approximately 21 hours ago
Code:
mi svyset [ pw= house_wgt ]
Code:
ipov hh_income_nom, alpha(0) hsize(hholdsz) index(fgt) pline(799) no; data are mi set Use mi svyset to set or query these data; mi svyset has the same syntax as svyset. Perhaps you did not type svyset. Some commands call svyset to obtain information about the settings. In that case, that command is not appropriate for running directly on mi data. Use mi extract to select the data on which you want to run the command, which is probably m=0. r(119);
Comment