I’m trying to replicate the IPUMS results for official poverty in 2017 (ASEC survey year 2018) from Table 1 here.
I’m interpreting the table to be saying that using OFFPOV should yield a poverty rate of 12.3%.
Yet in Stata, if I restrict the universe to OFFPOVUNIV = 1 and weight by ASECWT, I get a poverty rate of 12.7% using this command:
tabulate offpov if offpovuniv == 1 [iw=asecwt]
Am I omitting a crucial filter here?