The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The SINASC (Sistema de Informacoes sobre Nascidos Vivos) is Brazil’s national live birth information system, managed by the Ministry of Health through DATASUS. It records individual birth certificates (Declaracao de Nascido Vivo) with maternal, delivery, and newborn characteristics.
| Feature | Details |
|---|---|
| Coverage | Per state (UF), all 27 states |
| Years | 1996–2024 |
| Unit | One row per live birth certificate |
| Format | .dbc files from DATASUS FTP |
Use CID-10 code prefixes to filter births with congenital anomalies:
| Variable | Description |
|---|---|
| DTNASC | Birth date |
| SEXO | Sex (1=Male, 2=Female, 0=Unknown) |
| PESO | Birth weight (grams) |
| IDADEMAE | Mother’s age (years) |
| GESTACAO | Gestational age (weeks, categorized) |
| PARTO | Delivery type (1=Vaginal, 2=Cesarean) |
| CONSULTAS | Prenatal consultations (categorized) |
| CODANOMAL | Congenital anomaly (CID-10 code) |
| CODMUNRES | Municipality of mother’s residence (IBGE 6 digits) |
| ESCMAE | Mother’s education level |
| RACACOR | Newborn’s race/color |
| APGAR1, APGAR5 | Apgar score at 1 and 5 minutes |
births <- sinasc_data(year = 2022, uf = c("SP", "RJ", "MG", "BA", "RS"))
lbw <- births |>
filter(!is.na(PESO), PESO != "0") |>
mutate(
weight = as.numeric(PESO),
low_weight = weight < 2500
) |>
group_by(uf_source) |>
summarise(
total = n(),
low_weight_n = sum(low_weight),
low_weight_pct = low_weight_n / total * 100
)datasus.saude.gov.br)These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.