The "pessoa02" table of 2010 census tracts should have more variables, up to "pessoa02_V255". However, it stops at "pessoa02_V170". See page 87 of the data dictionary
# data dictionary
censobr::data_dictionary(year = 2010, dataset = "tracts")
# try to get the data
df <- censobr::read_tracts(
year = 2010,
dataset = "Pessoa"
) |>
dplyr::select(
code_tract, code_muni,
pop_litmen = pessoa02_V086,
pop_litwomen = pessoa02_V171
)
The "pessoa02" table of 2010 census tracts should have more variables, up to
"pessoa02_V255". However, it stops at"pessoa02_V170". See page 87 of the data dictionary