Session Ready
Exercise

Calculating group-wise margins of error

One way to reduce margins of error in an ACS analysis is to combine estimates when appropriate. This can be accomplished using tidyverse group-wise data analysis tools. In this exercise, you'll combine estimates for male and female elderly poverty in Vermont, and use the moe_sum() function as part of this group-wise analysis. While you may lose some detail with this type of approach, your estimates will be more reliable relative to their margins of error than before you combined them.

Instructions
100 XP
  • Group the vt_eldpov dataset by the GEOID column.
  • In the summarize() call, use the moe_sum() function to calculate a derived margin of error.
  • Check the proportion of rows with margins of error that exceed their estimates.