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)
Need a high-speed mirror for your open-source project?
Contact our mirror admin team at info@clientvps.com.
This archive is provided as a free public service to the community.
Proudly supported by infrastructure from VPSPulse , RxServers , BuyNumber , UnitVPS , OffshoreName and secure payment technology by ArionPay.