| rj_mortality | R Documentation |
Combined long-format dataset of infant mortality in the 92 municipalities
of Rio de Janeiro state, Brazil, 2016. Each row represents a (municipality,
ICD-10 leaf) combination with at least one death; missing combinations
are implicitly zero. Use together with rj_tree.
rj_mortality
A data.frame in long format with columns:
Integer identifier of the municipality.
6-digit IBGE municipality code.
Municipality name.
IBGE municipal population estimate for 2016.
Number of live births in 2016 (SINASC). Used as the population denominator in Section 5.2 of Cancado et al. (2025).
Longitude of the municipality centroid.
Latitude of the municipality centroid.
Character ICD-10 leaf code (4 characters), matching a
leaf of rj_tree.
Integer count of infant deaths.
To reproduce Section 5.2 of Cancado et al. (2025), use live_births
as the population denominator:
data <- rj_mortality data$population <- data$live_births treespatial_scan(data, rj_tree, ...)
Municipality polygons can be obtained via geobr::read_municipality().
Population: IBGE municipal estimates. Live births: DATASUS/SINASC via
TabNet. Deaths: DATASUS/SIM microdata via OpenDATASUS
(https://opendatasus.saude.gov.br). Centroids: geobr.
Cancado, A.L.F., Oliveira, G.S., Quadros, A.V.C., Duczmal, L. (2025). A tree-spatial scan statistic. Environmental and Ecological Statistics, 32, 953–978. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1007/s10651-025-00670-w")}
rj_tree
data(rj_mortality)
head(rj_mortality)
cat("Total deaths:", sum(rj_mortality$cases), "\n")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.