Returns a tibble with available variables in the SINAN microdata, including descriptions and value types.
Examples
sinan_variables()
#> # A tibble: 32 × 4
#> variable description type section
#> <chr> <chr> <chr> <chr>
#> 1 NU_NOTIFIC Número da notificação char… notifi…
#> 2 TP_NOT Tipo de notificação (1=Negativa, 2=Individual, 3=Su… char… notifi…
#> 3 ID_AGRAVO Código do agravo notificado (CID-10) char… notifi…
#> 4 DT_NOTIFIC Data da notificação (dd/mm/aaaa) date… notifi…
#> 5 SEM_NOT Semana epidemiológica da notificação char… notifi…
#> 6 NU_ANO Ano da notificação inte… notifi…
#> 7 DT_SIN_PRI Data dos primeiros sintomas date… notifi…
#> 8 SEM_PRI Semana epidemiológica dos primeiros sintomas char… notifi…
#> 9 NM_PACIENT Nome do paciente char… pacien…
#> 10 DT_NASC Data de nascimento date… pacien…
#> # ℹ 22 more rows
sinan_variables(search = "sexo")
#> # A tibble: 1 × 4
#> variable description type section
#> <chr> <chr> <chr> <chr>
#> 1 CS_SEXO Sexo (M=Masculino, F=Feminino, I=Ignorado) character paciente
sinan_variables(search = "municipio")
#> # A tibble: 2 × 4
#> variable description type section
#> <chr> <chr> <chr> <chr>
#> 1 ID_MUNICIP Município de notificação (código IBGE 6 dígitos) character residen…
#> 2 ID_MN_RESI Município de residência (código IBGE 6 dígitos) character residen…