I am trying to replicate the published estimate of the proportion of people living in poverty according to the one-year 2018 ACS. We have been able to replicate the 13.1 percent proportion of people in poverty that was published here: Explore Census Data
However, we are not able to replicate the denominator of people for whom poverty status is determined. According to my calculations (see Stata code below), the denominator is 319725862, but in the published table it is 319184033. This difference of 541,829 cases is far outside the margin of error of 23,581 people. I have tried excluding people living in group quarters, but that does not make up the difference.
I appreciate your help.
gen povlevel = .
replace povlevel = 1 if poverty < 100 & poverty >0 & poverty !=. //<100% FPL
else replace povlevel = 2 if poverty <200 & poverty >= 100 & poverty !=. //100-199% FPL
else replace povlevel = 3 if poverty >= 200 & poverty !=. //200+% FPL
svyset cluster [pweight=perwt], strata(strata)
svy: tab povlevel, count format(%12.0f)