I'm getting different point estimates when using tab and aweight instead of table and pweight. Everything I've seen (such as this discussion http://www.stata.com/statalist/archi.../msg00423.html) indicates that aweight and pweight produce the same point estimate but different variances.
I'm using the new 1972-2016 GSS data and a recoded White Baptist variable, but the difference is apparent in the standard race variable. I'm using wtssall. If you run
the white point estimate is 50,320.945. On the other hand, if you run
the white point estimate is 50,321.7. Why is this occurring? And when are each appropriate?
I'm using the new 1972-2016 GSS data and a recoded White Baptist variable, but the difference is apparent in the standard race variable. I'm using wtssall. If you run
Code:
tab race [aweight=wtssall]
Code:
table race [pweight=wtssall]
Comment