Weight in Indonesia DHS 2012 for un insurance coverage (None) [message #22068] |
Tue, 26 January 2021 15:44 |
henggar pramudityo
Messages: 2 Registered: January 2021
|
Member |
|
|
Dear DHS Team,
I have a study to find uncoverage insurance (none) in Jakarta in 2012.
Before implementing the program for Jakarta, I have to check my SAS program to reperform calculation with the national data same with DHS 2012 result report.
I have reperformed in SAS, there is no problem for females data, but my result in males data really different from DHS 2012 report.
My SAS program
Data idmr63fl;
set user.idmr63fl;
/*Create the weight variable*/
WGT=MV005/1000000;
run;
proc sort data=idmr63fl;
by MV013;
run ;
/*weighted frequency*/
proc freq data=idmr63fl;
table mv481;
weight WGT;
by MV013;
run;
Could you explain why this happens and what should I do?
Thank you.
|
|
|