Hello All,
I am looking at data from consecutive surveys to look for changes in different indicators over time. I read this paper (https://malariajournal.biomedcentral...936-017-1946-1) and thus started to follow the same method using svy: prop and then lincom command to find the difference in percentages and get the CIs around those differences.
The problem I have is that the svy: prop command gives the same point estimates that I calculated previously using svy: tab command, but the CIs around the estimates are different and sometimes go into the negative, much like the problem previously posted here: https://www.stata.com/statalist/arch.../msg01127.html
From that post I can see the the svy: tab is giving me the best point estimates and CIs for my indicators, but can I use these values for the indicator values in each survey and then use the lincom with svy: prop to get accurate percentage difference values?
e.g.:
svy: tab seek_treat survey if fever==1, per col ci obs format (%6.2f) ///take point estimates and CIs from here for each survey
svy: prop seek_treat if fever==1, over(survey)
lincom _b[yes:2] - _b[yes:1] ////and take difference in %s from here
lincom _b[yes:3] - _b[yes:1]
Thank you, Hannah
I am looking at data from consecutive surveys to look for changes in different indicators over time. I read this paper (https://malariajournal.biomedcentral...936-017-1946-1) and thus started to follow the same method using svy: prop and then lincom command to find the difference in percentages and get the CIs around those differences.
The problem I have is that the svy: prop command gives the same point estimates that I calculated previously using svy: tab command, but the CIs around the estimates are different and sometimes go into the negative, much like the problem previously posted here: https://www.stata.com/statalist/arch.../msg01127.html
From that post I can see the the svy: tab is giving me the best point estimates and CIs for my indicators, but can I use these values for the indicator values in each survey and then use the lincom with svy: prop to get accurate percentage difference values?
e.g.:
svy: tab seek_treat survey if fever==1, per col ci obs format (%6.2f) ///take point estimates and CIs from here for each survey
svy: prop seek_treat if fever==1, over(survey)
lincom _b[yes:2] - _b[yes:1] ////and take difference in %s from here
lincom _b[yes:3] - _b[yes:1]
Thank you, Hannah
Comment