NFHS 3 data - what variables define STRATA and CLUSTER for SAS analysis [message #2134] |
Wed, 07 May 2014 10:45 |
drsanmis
Messages: 2 Registered: May 2014
|
Member |
|
|
Hi,
I am looking at a categorical outcome in the NFHS 3 data. Do I need to use PROC LOGISTIC or PROC SURVEY LOGISTIC in SAS. ( Published papers have used either of them).
If proc survey logistic is used the syntax requires using STRATA and CLUSTER statements. I am not sure which variables in the dataset signify strata and cluster.
It will be very helpful if someone can guide me on this.
|
|
|
|
Re: NFHS 3 data - what variables define STRATA and CLUSTER for SAS analysis [message #2169 is a reply to message #2134] |
Thu, 15 May 2014 09:21 |
Bridgette-DHS
Messages: 3199 Registered: February 2013
|
Senior Member |
|
|
Following is a response from our Senior SAS Specialist, Ruilin Ren.
For the use of the logistic regression, it really depends on your purpose of analysis. If you are interested in exploring patterns of the survey data themselves, but do not intend to extrapolate the entire survey population, you can use proc logistic. But if your intention is to explore patterns among the entire survey population, you need to use proc survey logistic. In the later case, you need to declare CLUSTER (variable HV001 at household level, V001 at individual level), STRATA (HV022 at household level, V022 at individual level). You also need to declare the sampling weight WEIGHT (HV005 divided by 1000000 at household level, and V005 divided by 1000000 at individual level).
|
|
|
|
|
|
|