Dear fellows,
I want to export the logit confidence interval that is estimated by the proportion command. But using estout, I only obtain a confidence interval that is based on a normal distribution, not the interval that is presented in the results window.
I would be very glad about suggestions how I could export the correctly estimated confidence interval.
Thanks a lot!
I promted
svy, subpop(if l11101==9 & HVP==1 ): proportion s_wirtsituation if syear==2022
eststo M1
estout M1 , cells(ci(fmt(3)))
resulting in
Survey: Proportion estimation
Number of strata = 102 Number of obs = 16,862
Number of PSUs = 4,486 Population size = 64,459,723
Subpop. no. obs = 2,201
Subpop. size = 9,132,892.2
Design df = 4,384
----------------------------------------------------------------------
| Linearized Logit
| Proportion std. err. [95% conf. interval]
---------------------+------------------------------------------------
s_wirtsituation |
keine großen Sorgen | .8560271 .0146033 .8249679 .8823608
große Sorgen | .1439729 .0146033 .1176392 .1750321
----------------------------------------------------------------------
Note: 123 strata omitted because they contain no subpopulation
members.
Note: Strata with single sampling unit centered at overall mean.
. eststo M1
. estout M1 , cells(ci(fmt(3)))
-------------------------
M1
ci95
-------------------------
0.s_wirtsi~n 0.827,0.885
1.s_wirtsi~n 0.115,0.173
-------------------------
I want to export the logit confidence interval that is estimated by the proportion command. But using estout, I only obtain a confidence interval that is based on a normal distribution, not the interval that is presented in the results window.
I would be very glad about suggestions how I could export the correctly estimated confidence interval.
Thanks a lot!
I promted
svy, subpop(if l11101==9 & HVP==1 ): proportion s_wirtsituation if syear==2022
eststo M1
estout M1 , cells(ci(fmt(3)))
resulting in
Survey: Proportion estimation
Number of strata = 102 Number of obs = 16,862
Number of PSUs = 4,486 Population size = 64,459,723
Subpop. no. obs = 2,201
Subpop. size = 9,132,892.2
Design df = 4,384
----------------------------------------------------------------------
| Linearized Logit
| Proportion std. err. [95% conf. interval]
---------------------+------------------------------------------------
s_wirtsituation |
keine großen Sorgen | .8560271 .0146033 .8249679 .8823608
große Sorgen | .1439729 .0146033 .1176392 .1750321
----------------------------------------------------------------------
Note: 123 strata omitted because they contain no subpopulation
members.
Note: Strata with single sampling unit centered at overall mean.
. eststo M1
. estout M1 , cells(ci(fmt(3)))
-------------------------
M1
ci95
-------------------------
0.s_wirtsi~n 0.827,0.885
1.s_wirtsi~n 0.115,0.173
-------------------------
Comment