This question may be out-of-scope, but I'm not sure where else to ask it.
I am trying to obtain response rates to the 2010 US census with 2010 boundaries. The census provides an overview of getting response rates here but it seems to use 2020 boundaries. I tried using this call to obtain all census tracts in Ohio: https://api.census.gov/data/2010/dec/responserate?get=NAME,GEO_ID,FSRR2010&for=tract:*&in=state:39
Is there a way to get the response rates using 2010 boundaries? Also, can this be done in tidycensus?
Here's how you'd do it in tidycensus:
You are correct however that the rates are aggregated to 2020 Census tracts. Unless Census fixes (I assume that was you posting on the Census Slack channel?), you would have to join to shapes from tigris (as
geometry = TRUE
won't work correctly here) then interpolate back to 2010 tracts using a method like those described here.