Nothing
#' Scrapes SIM's ICD-10 data from cities
#'
#' This function allows the user to retrieve data from
#' SIM's ICD-10 database much in the same way that is done
#' by the online portal. The argument options refer to
#' data focused on brazilian cities.
#'
#' @usage sim_obt10_mun(linha = "Município", coluna = "Não ativa",
#' conteudo = 1, periodo = "last", municipio = "all", capital = "all",
#' cir = "all", macrorregiao_de_saude = "all", microrregiao_ibge = "all",
#' ride = "all", territorio_da_cidadania = "all", mesorregiao_pndr = "all",
#' amazonia_legal = "all", semiarido = "all", faixa_de_fronteira = "all",
#' zona_de_fronteira = "all", municipio_de_extrema_pobreza = "all",
#' capitulo_cid10 = "all", grupo_cid10 = "all", categoria_cid10 = "all",
#' causa_br_cid10 = "all", causa_mal_definida = "all", faixa_etaria = "all",
#' faixa_etaria_ops = "all", faixa_etaria_det = "all", faixa_etaria_menor1a = "all",
#' sexo = "all", cor_raca = "all", escolaridade = "all", estado_civil = "all",
#' local_ocorrencia = "all")
#' @param linha A character describing which element will be displayed in the rows of the data.frame. Defaults to "Município".
#' @param coluna A character describing which element will be displayed in the columns of the data.frame. Defaults to "Não ativa".
#' @param conteudo A character of length = 1 with the state's acronym of interest.
#' @param periodo A character vector describing the period of data. Defaults to the last available.
#' @param municipio "all" or a numeric vector with the IBGE's city codes codes to filter the data. Defaults to "all".
#' @param capital "all" or a numeric vector with the IBGE's cities codes to filter the data. Defaults to "all".
#' @param cir "all" or a numeric vector with the CIR's codes to filter the data. Defaults to "all".
#' @param macrorregiao_de_saude "all" or a numeric vector with the Health macro-region's codes to filter the data. Defaults to "all".
#' @param microrregiao_ibge "all" or a numeric vector with the IBGE's micro-region codes to filter the data. Defaults to "all".
#' @param ride "all" or a numeric vector with the IBGE's metropolitan-region codes to filter the data. Defaults to "all".
#' @param territorio_da_cidadania "all" or a numeric vector with the territory of citizenship codes to filter the data. Defaults to "all".
#' @param mesorregiao_pndr "all" or a numeric vector with the PNDR's mesoregion codes to filter the data. Defaults to "all".
#' @param amazonia_legal "all" or a character ("Sim" or "Não") indicating if only the Legal Amazon region must be included. Defaults to "all".
#' @param semiarido "all" or a character ("Sim" or "Não") indicating if only the semiarid region must be included. Defaults to "all".
#' @param faixa_de_fronteira "all" or a character ("Sim" or "Não") indicating if only the border area must be included. Defaults to "all".
#' @param zona_de_fronteira "all" or a character ("Sim" or "Não") indicating if only the border strip must be included. Defaults to "all".
#' @param municipio_de_extrema_pobreza "all" or a character ("Sim" or "Não") indicating if only the municipalities of extreme poverty must be included. Defaults to "all".
#' @param capitulo_cid10 "all" or a numeric vector with the ICD-10 chapter to filter the data. Defaults to "all".
#' @param grupo_cid10 "all" or a character vector with the ICD-10 group (written in the same way) or the number corresponding to the order of the option in the online layout to filter the data. Defaults to "all".
#' @param categoria_cid10 "all" or a character vector with the ICD-10 category codes (capital letter and two numbers) to filter the data. Defaults to "all".
#' @param causa_br_cid10 "all" or a character vector with the ICD-10 cause codes to filter the data. Defaults to "all".
#' @param causa_mal_definida "all" or a character vector with the ill-defined causes (written in the same way) or the number corresponding to the order of the option in the online layout to filter the data. Defaults to "all".
#' @param faixa_etaria "all" or a character vector with the age range (written in the same way) or the number corresponding to the order of the option in the online layout to filter the data. Defaults to "all".
#' @param faixa_etaria_ops "all" or a character vector with the age range (written in the same way) or the number corresponding to the order of the option in the online layout to filter the data. Defaults to "all". "ops" in the argument name stands for Pan American Health Organization.
#' @param faixa_etaria_det "all" or a character vector with the age range (written in the same way) or the number corresponding to the order of the option in the online layout to filter the data. Defaults to "all".
#' @param faixa_etaria_menor1a "all" or a character vector with the age range (written in the same way) or the number corresponding to the order of the option in the online layout to filter the data. Defaults to "all".
#' @param sexo "all" or a character vector with the gender (written in the same way) or the number corresponding to the order of the option in the online layout to filter the data. Defaults to "all".
#' @param cor_raca "all" or a character vector with the color/race (written in the same way) or the number corresponding to the order of the option in the online layout to filter the data. Defaults to "all".
#' @param escolaridade "all" or a character vector with the instruction (written in the same way) or the number corresponding to the order of the option in the online layout to filter the data. Defaults to "all".
#' @param estado_civil "all" or a character vector with the marital status (written in the same way) or the number corresponding to the order of the option in the online layout to filter the data. Defaults to "all".
#' @param local_ocorrencia "all" or a character vector with the place of ocurrence to filter the data. Defaults to "all".
#' @return The function returns a data frame printed by parameters input.
#' @author Renato Prado Siqueira \email{<rpradosiqueira@@gmail.com>}
#' @seealso \code{\link{sinasc_nv_uf}}
#' @examples
#' \dontrun{
#' ## Requesting data from the city of Campo Grande/MS
#' sim_obt10_mun(municipio = 500270)
#' }
#'
#' @keywords SIM datasus
#' @importFrom magrittr %>%
#' @importFrom utils head
#' @export
sim_obt10_mun <- function(linha = "Munic\u00edpio", coluna = "N\u00e3o ativa", conteudo = 1, periodo = "last", municipio = "all",
capital = "all", cir = "all", macrorregiao_de_saude = "all", microrregiao_ibge = "all", ride = "all",
territorio_da_cidadania = "all", mesorregiao_pndr = "all", amazonia_legal = "all", semiarido = "all",
faixa_de_fronteira = "all", zona_de_fronteira = "all", municipio_de_extrema_pobreza = "all",
capitulo_cid10 = "all", grupo_cid10 = "all", categoria_cid10 = "all", causa_br_cid10 = "all",
causa_mal_definida = "all", faixa_etaria = "all", faixa_etaria_ops = "all", faixa_etaria_det = "all",
faixa_etaria_menor1a = "all", sexo = "all", cor_raca = "all", escolaridade = "all", estado_civil = "all",
local_ocorrencia = "all") {
page <- xml2::read_html("http://tabnet.datasus.gov.br/cgi/deftohtm.exe?sim/cnv/obt10br.def")
#### DF ####
linha.df <- data.frame(id = page %>% rvest::html_nodes("#L option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#L option") %>% rvest::html_attr("value"))
linha.df[] <- lapply(linha.df, as.character)
coluna.df <- data.frame(id = page %>% rvest::html_nodes("#C option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#C option") %>% rvest::html_attr("value"))
coluna.df[] <- lapply(coluna.df, as.character)
conteudo.df <- data.frame(id1 = c(1, 2),
id2 = c("\u00d3bitos_p/Resid\u00eanc", "\u00d3bitos_p/Ocorr\u00eanc"),
value = c("\u00d3bitos_p/Resid\u00eanc", "\u00d3bitos_p/Ocorr\u00eanc"))
periodos.df <- data.frame(id = page %>% rvest::html_nodes("#A option") %>% rvest::html_text() %>% as.numeric(),
value = page %>% rvest::html_nodes("#A option") %>% rvest::html_attr("value"))
municipios.df <- suppressWarnings(data.frame(id = page %>% rvest::html_nodes("#S1 option") %>% rvest::html_text() %>% readr::parse_number(),
value = page %>% rvest::html_nodes("#S1 option") %>% rvest::html_attr("value")))
capital.df <- suppressWarnings(data.frame(id = page %>% rvest::html_nodes("#S2 option") %>% rvest::html_text() %>% readr::parse_number(),
value = page %>% rvest::html_nodes("#S2 option") %>% rvest::html_attr("value")))
cir.df <- suppressWarnings(data.frame(id = page %>% rvest::html_nodes("#S3 option") %>% rvest::html_text() %>% readr::parse_number(),
value = page %>% rvest::html_nodes("#S3 option") %>% rvest::html_attr("value")))
macrorregiao_de_saude.df <- suppressWarnings(data.frame(id = page %>% rvest::html_nodes("#S4 option") %>% rvest::html_text() %>% readr::parse_number(),
value = page %>% rvest::html_nodes("#S4 option") %>% rvest::html_attr("value")))
microrregiao_ibge.df <- suppressWarnings(data.frame(id = page %>% rvest::html_nodes("#S5 option") %>% rvest::html_text() %>% readr::parse_number(),
value = page %>% rvest::html_nodes("#S5 option") %>% rvest::html_attr("value")))
ride.df <- suppressWarnings(data.frame(id = page %>% rvest::html_nodes("#S6 option") %>% rvest::html_text() %>% readr::parse_number(),
value = page %>% rvest::html_nodes("#S6 option") %>% rvest::html_attr("value")))
territorio_da_cidadania.df <- suppressWarnings(data.frame(id = page %>% rvest::html_nodes("#S7 option") %>% rvest::html_text() %>% readr::parse_number(),
value = page %>% rvest::html_nodes("#S7 option") %>% rvest::html_attr("value")))
mesorregiao_pndr.df <- suppressWarnings(data.frame(id = page %>% rvest::html_nodes("#S8 option") %>% rvest::html_text() %>% readr::parse_number(),
value = page %>% rvest::html_nodes("#S8 option") %>% rvest::html_attr("value")))
amazonia_legal.df <- data.frame(id = page %>% rvest::html_nodes("#S9 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S9 option") %>% rvest::html_attr("value"))
amazonia_legal.df[] <- lapply(amazonia_legal.df, as.character)
semiarido.df <- data.frame(id = page %>% rvest::html_nodes("#S10 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S10 option") %>% rvest::html_attr("value"))
semiarido.df[] <- lapply(semiarido.df, as.character)
faixa_de_fronteira.df <- data.frame(id = page %>% rvest::html_nodes("#S11 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S11 option") %>% rvest::html_attr("value"))
faixa_de_fronteira.df[] <- lapply(faixa_de_fronteira.df, as.character)
zona_de_fronteira.df <- data.frame(id = page %>% rvest::html_nodes("#S12 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S12 option") %>% rvest::html_attr("value"))
zona_de_fronteira.df[] <- lapply(zona_de_fronteira.df, as.character)
municipio_de_extrema_pobreza.df <- data.frame(id = page %>% rvest::html_nodes("#S13 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S13 option") %>% rvest::html_attr("value"))
municipio_de_extrema_pobreza.df[] <- lapply(municipio_de_extrema_pobreza.df, as.character)
capitulo_cid10.df <- data.frame(id = 0:22,
value = page %>% rvest::html_nodes("#S14 option") %>% rvest::html_attr("value"))
capitulo_cid10.df[] <- lapply(capitulo_cid10.df, as.character)
grupo_cid10.df <- data.frame(id = page %>% rvest::html_nodes("#S15 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S15 option") %>% rvest::html_attr("value"))
grupo_cid10.df[] <- lapply(grupo_cid10.df, as.character)
categoria_cid10.df <- data.frame(id = page %>% rvest::html_nodes("#S16 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S16 option") %>% rvest::html_attr("value"))
categoria_cid10.df[] <- lapply(categoria_cid10.df, as.character)
categoria_cid10.df$id <- gsub(" .*$", "", categoria_cid10.df$id)
causa_br_cid10.df <- data.frame(id = page %>% rvest::html_nodes("#S17 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S17 option") %>% rvest::html_attr("value"))
causa_br_cid10.df[] <- lapply(causa_br_cid10.df, as.character)
causa_br_cid10.df.id_temp <- unlist(strsplit(causa_br_cid10.df$id, split = " "))
causa_br_cid10.df$id <- c(NA, causa_br_cid10.df.id_temp[stringr::str_detect(causa_br_cid10.df.id_temp, "\\d")])
causa_mal_definida.df <- data.frame(id = page %>% rvest::html_nodes("#S18 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S18 option") %>% rvest::html_attr("value"))
causa_mal_definida.df[] <- lapply(causa_mal_definida.df, as.character)
faixa_etaria.df <- data.frame(id = page %>% rvest::html_nodes("#S19 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S19 option") %>% rvest::html_attr("value"))
faixa_etaria.df[] <- lapply(faixa_etaria.df, as.character)
faixa_etaria_ops.df <- data.frame(id = page %>% rvest::html_nodes("#S20 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S20 option") %>% rvest::html_attr("value"))
faixa_etaria_ops.df[] <- lapply(faixa_etaria_ops.df, as.character)
faixa_etaria_det.df <- data.frame(id = page %>% rvest::html_nodes("#S21 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S21 option") %>% rvest::html_attr("value"))
faixa_etaria_det.df[] <- lapply(faixa_etaria_det.df, as.character)
faixa_etaria_menor1a.df <- data.frame(id = page %>% rvest::html_nodes("#S22 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S22 option") %>% rvest::html_attr("value"))
faixa_etaria_menor1a.df[] <- lapply(faixa_etaria_menor1a.df, as.character)
sexo.df <- data.frame(id = page %>% rvest::html_nodes("#S23 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S23 option") %>% rvest::html_attr("value"))
sexo.df[] <- lapply(sexo.df, as.character)
cor_raca.df <- data.frame(id = page %>% rvest::html_nodes("#S24 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S24 option") %>% rvest::html_attr("value"))
cor_raca.df[] <- lapply(cor_raca.df, as.character)
escolaridade.df <- data.frame(id = page %>% rvest::html_nodes("#S25 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S25 option") %>% rvest::html_attr("value"))
escolaridade.df[] <- lapply(escolaridade.df, as.character)
estado_civil.df <- data.frame(id = page %>% rvest::html_nodes("#S26 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S26 option") %>% rvest::html_attr("value"))
estado_civil.df[] <- lapply(estado_civil.df, as.character)
local_ocorrencia.df <- data.frame(id = page %>% rvest::html_nodes("#S27 option") %>% rvest::html_text() %>% trimws(),
value = page %>% rvest::html_nodes("#S27 option") %>% rvest::html_attr("value"))
local_ocorrencia.df[] <- lapply(local_ocorrencia.df, as.character)
municipios.df$id[1] <- capital.df$id[1] <- cir.df$id[1] <- macrorregiao_de_saude.df$id[1] <- microrregiao_ibge.df$id[1] <- "all"
territorio_da_cidadania.df$id[1] <- mesorregiao_pndr.df$id[1] <- amazonia_legal.df$id[1] <- semiarido.df$id[1] <- "all"
faixa_de_fronteira.df$id[1] <- zona_de_fronteira.df$id[1] <- municipio_de_extrema_pobreza.df$id[1] <- "all"
ride.df$id[1] <- local_ocorrencia.df$id[1]<- capitulo_cid10.df$id[1] <- grupo_cid10.df$id[1] <- categoria_cid10.df$id[1] <- "all"
causa_br_cid10.df$id[1] <- causa_mal_definida.df$id[1] <- faixa_etaria.df$id[1] <- faixa_etaria_ops.df$id[1] <- "all"
faixa_etaria_det.df$id[1] <- faixa_etaria_menor1a.df$id[1] <- sexo.df$id[1] <- cor_raca.df$id[1] <- escolaridade.df$id[1] <- "all"
estado_civil.df$id[1] <- "all"
#### ERROR HANDLING ####
if (linha != "Munic\u00edpio") {
if (!is.character(linha)) stop("The 'linha' argument must be a character element")
if(length(linha) != 1) stop("The 'linha' argument must have only one element")
if (!(all(linha %in% linha.df$id))) {
if (!(all(linha %in% linha.df$value))) {
stop("The 'linha' argument is misspecified")
}
}
}
if (coluna != "N\u00e3o ativa") {
if (!is.character(coluna)) stop("The 'coluna' argument must be a character element")
if(length(coluna) != 1) stop("The 'coluna' argument must have only one element")
if (!(all(coluna %in% coluna.df$id))) {
if (!(all(coluna %in% coluna.df$value))) {
stop("The 'coluna' argument is misspecified")
}
}
}
if (conteudo != 1 & conteudo != 2) {
if (is.numeric(conteudo)) stop("The only numeric elements allowed are 1 or 2")
if(length(conteudo) != 1) stop("The 'coluna' argument must have only one element")
if (!(all(conteudo %in% conteudo.df$id2))) {
if (!(all(conteudo %in% conteudo.df$value))) {
stop("The 'conteudo' argument is misspecified")
}
}
}
if (periodo[1] != "last") {
if (is.character(periodo)) {
periodo <- as.numeric(periodo)
}
if (!(all(periodo %in% periodos.df$id))) stop("The 'periodo' argument is misspecified")
}
if (any(municipio != "all")) {
municipio <- as.character(municipio)
if (!(all(municipio %in% municipios.df$id))) stop("Some element in 'municipio' argument is wrong")
}
if (any(capital != "all")) {
capital <- as.character(capital)
if (!(all(capital %in% capital.df$id))) stop("Some element in 'capital' argument is wrong")
}
if (any(cir != "all")) {
cir <- as.character(cir)
if (!(all(cir %in% cir.df$id))) stop("Some element in 'cir' argument is wrong")
}
if (any(macrorregiao_de_saude != "all")) {
macrorregiao_de_saude <- as.character(macrorregiao_de_saude)
if (!(all(macrorregiao_de_saude %in% macrorregiao_de_saude.df$id))) stop("Some element in 'macrorregiao_de_saude' argument is wrong")
}
if (any(microrregiao_ibge != "all")) {
microrregiao_ibge <- as.character(microrregiao_ibge)
if (!(all(microrregiao_ibge %in% microrregiao_ibge.df$id))) stop("Some element in 'microrregiao_ibge' argument is wrong")
}
if (any(ride != "all")) {
ride <- as.character(ride)
if (!(all(ride %in% ride.df$id))) stop("Some element in 'ride' argument is wrong")
}
if (any(territorio_da_cidadania != "all")) {
territorio_da_cidadania <- as.character(as.numeric(territorio_da_cidadania))
if (!(all(territorio_da_cidadania %in% territorio_da_cidadania.df$id))) stop("Some element in 'territorio_da_cidadania' argument is wrong")
}
if (any(mesorregiao_pndr != "all")) {
mesorregiao_pndr <- as.character(as.numeric(mesorregiao_pndr))
if (!(all(mesorregiao_pndr %in% mesorregiao_pndr.df$id))) stop("Some element in 'mesorregiao_pndr' argument is wrong")
}
if (any(amazonia_legal != "all")) {
amazonia_legal <- as.character(amazonia_legal)
if (!(all(amazonia_legal %in% amazonia_legal.df$id))) stop("The element in 'amazonia_legal' argument is wrong")
}
if (any(semiarido != "all")) {
semiarido <- as.character(semiarido)
if (!(all(semiarido %in% semiarido.df$id))) stop("The element in 'semiarido' argument is wrong")
}
if (any(faixa_de_fronteira != "all")) {
faixa_de_fronteira <- as.character(faixa_de_fronteira)
if (!(all(faixa_de_fronteira %in% faixa_de_fronteira.df$id))) stop("The element in 'faixa_de_fronteira' argument is wrong")
}
if (any(zona_de_fronteira != "all")) {
zona_de_fronteira <- as.character(zona_de_fronteira)
if (!(all(zona_de_fronteira %in% zona_de_fronteira.df$id))) stop("The element in 'zona_de_fronteira' argument is wrong")
}
if (any(municipio_de_extrema_pobreza != "all")) {
municipio_de_extrema_pobreza <- as.character(municipio_de_extrema_pobreza)
if (!(all(municipio_de_extrema_pobreza %in% municipio_de_extrema_pobreza.df$id))) stop("The element in 'municipio_de_extrema_pobreza' argument is wrong")
}
if (any(capitulo_cid10 != "all")) {
capitulo_cid10 <- as.character(capitulo_cid10)
if (!(all(capitulo_cid10 %in% capitulo_cid10.df$id))) stop("Some element in 'capitulo_cid10' argument is wrong")
}
if (any(grupo_cid10 != "all")) {
if (!(all(grupo_cid10 %in% grupo_cid10.df$id))) {
grupo_cid10 <- as.character(grupo_cid10)
if (!(all(grupo_cid10 %in% grupo_cid10.df$value))) {
stop("Some element in 'grupo_cid10' argument is wrong")
}
}
}
if (any(categoria_cid10 != "all")) {
categoria_cid10 <- as.character(categoria_cid10)
if (!(all(categoria_cid10 %in% categoria_cid10.df$id))) stop("Some element in 'categoria_cid10' argument is wrong")
}
if (any(causa_br_cid10 != "all")) {
causa_br_cid10 <- as.character(causa_br_cid10)
if (!(all(causa_br_cid10 %in% causa_br_cid10.df$id))) stop("Some element in 'causa_br_cid10' argument is wrong")
}
if (any(causa_mal_definida != "all")) {
if (!(all(causa_mal_definida %in% causa_mal_definida.df$id))) {
causa_mal_definida <- as.character(causa_mal_definida)
if (!(all(causa_mal_definida %in% causa_mal_definida.df$value))) {
stop("Some element in 'causa_mal_definida' argument is wrong")
}
}
}
if (any(faixa_etaria != "all")) {
if (!(all(faixa_etaria %in% faixa_etaria.df$id))) {
faixa_etaria <- as.character(faixa_etaria)
if (!(all(faixa_etaria %in% faixa_etaria.df$value))) {
stop("Some element in 'faixa_etaria' argument is wrong")
}
}
}
if (any(faixa_etaria_ops != "all")) {
if (!(all(faixa_etaria_ops %in% faixa_etaria_ops.df$id))) {
faixa_etaria_ops <- as.character(faixa_etaria_ops)
if (!(all(faixa_etaria_ops %in% faixa_etaria_ops.df$value))) {
stop("Some element in 'faixa_etaria_ops' argument is wrong")
}
}
}
if (any(faixa_etaria_det != "all")) {
if (!(all(faixa_etaria_det %in% faixa_etaria_det.df$id))) {
faixa_etaria_det <- as.character(faixa_etaria_det)
if (!(all(faixa_etaria_det %in% faixa_etaria_det.df$value))) {
stop("Some element in 'faixa_etaria_det' argument is wrong")
}
}
}
if (any(faixa_etaria_menor1a != "all")) {
if (!(all(faixa_etaria_menor1a %in% faixa_etaria_menor1a.df$id))) {
faixa_etaria_menor1a <- as.character(faixa_etaria_menor1a)
if (!(all(faixa_etaria_menor1a %in% faixa_etaria_menor1a.df$value))) {
stop("Some element in 'faixa_etaria_menor1a' argument is wrong")
}
}
}
if (any(sexo != "all")) {
if (!(all(sexo %in% sexo.df$id))) {
sexo <- as.character(sexo)
if (!(all(sexo %in% sexo.df$value))) {
stop("Some element in 'sexo' argument is wrong")
}
}
}
if (any(cor_raca != "all")) {
if (!(all(cor_raca %in% cor_raca.df$id))) {
cor_raca <- as.character(cor_raca)
if (!(all(cor_raca %in% cor_raca.df$value))) {
stop("Some element in 'cor_raca' argument is wrong")
}
}
}
if (any(escolaridade != "all")) {
if (!(all(escolaridade %in% escolaridade.df$id))) {
escolaridade <- as.character(escolaridade)
if (!(all(escolaridade %in% escolaridade.df$value))) {
stop("Some element in 'escolaridade' argument is wrong")
}
}
}
if (any(estado_civil != "all")) {
if (!(all(estado_civil %in% estado_civil.df$id))) {
estado_civil <- as.character(estado_civil)
if (!(all(estado_civil %in% estado_civil.df$value))) {
stop("Some element in 'estado_civil' argument is wrong")
}
}
}
if (any(local_ocorrencia != "all")) {
if (!(all(local_ocorrencia %in% local_ocorrencia.df$id))) {
local_ocorrencia <- as.character(local_ocorrencia)
if (!(all(local_ocorrencia %in% local_ocorrencia.df$value))) {
stop("Some element in 'local_ocorrencia' argument is wrong")
}
}
}
#### FILTERS APPLICATIONS ####
#linha
if (linha %in% linha.df$id) {
linha <- dplyr::filter(linha.df, linha.df$id %in% linha)
linha <- linha$value
}
if (!stringi::stri_enc_isascii(linha)) {
form_linha <- paste0("Linha=", stringi::stri_escape_unicode(linha))
} else {
form_linha <- paste0("Linha=", linha)
}
#coluna
if (coluna %in% coluna.df$id) {
coluna <- dplyr::filter(coluna.df, coluna.df$id %in% coluna)
coluna <- coluna$value
}
if (!stringi::stri_enc_isascii(coluna)) {
form_coluna <- paste0("Coluna=", stringi::stri_escape_unicode(coluna))
} else {
form_coluna <- paste0("Coluna=", coluna)
}
#conteudo
form_conteudo <- conteudo.df$value[conteudo]
if (!stringi::stri_enc_isascii(form_conteudo)) {
form_conteudo <- paste0("Incremento=", stringi::stri_escape_unicode(form_conteudo))
} else {
form_conteudo <- paste0("Incremento=", form_conteudo)
}
#periodo
suppressWarnings( if (periodo == "last") {periodo <- utils::head(periodos.df$id, 1)} )
form_periodo <- dplyr::filter(periodos.df, periodos.df$id %in% periodo)
form_periodo <- paste0("Arquivos=", form_periodo$value, collapse = "&")
form_pesqmes1 <- "pesqmes1=Digite+o+texto+e+ache+f%E1cil"
#municipio
form_municipio <- dplyr::filter(municipios.df, municipios.df$id %in% municipio)
form_municipio <- paste0("SMunic%EDpio=", form_municipio$value, collapse = "&")
form_pesqmes2 <- "pesqmes2=Digite+o+texto+e+ache+f%E1cil"
#capital
form_capital <- dplyr::filter(capital.df, capital.df$id %in% capital)
form_capital <- paste0("SCapital=", form_capital$value, collapse = "&")
form_pesqmes3 <- "pesqmes3=Digite+o+texto+e+ache+f%E1cil"
#cir
form_cir <- dplyr::filter(cir.df, cir.df$id %in% cir)
form_cir <- paste0("SRegi%E3o_de_Sa%FAde_%28CIR%29=", form_cir$value, collapse = "&")
form_pesqmes4 <- "pesqmes4=Digite+o+texto+e+ache+f%E1cil"
#macrorregiao_de_saude
form_macrorregiao_de_saude <- dplyr::filter(macrorregiao_de_saude.df, macrorregiao_de_saude.df$id %in% macrorregiao_de_saude)
form_macrorregiao_de_saude <- paste0("SMacrorregi%E3o_de_Sa%FAde=", form_macrorregiao_de_saude$value, collapse = "&")
form_pesqmes5 <- "pesqmes5=Digite+o+texto+e+ache+f%E1cil"
#microrregiao_ibge
form_microrregiao_ibge <- dplyr::filter(microrregiao_ibge.df, microrregiao_ibge.df$id %in% microrregiao_ibge)
form_microrregiao_ibge <- paste0("SMicrorregi%E3o_IBGE=", form_microrregiao_ibge$value, collapse = "&")
form_pesqmes6 <- "pesqmes6=Digite+o+texto+e+ache+f%E1cil"
#ride
form_ride <- dplyr::filter(ride.df, ride.df$id %in% ride)
form_ride <- paste0("SRegi%E3o_Metropolitana_-_RIDE=", form_ride$value, collapse = "&")
form_pesqmes7 <- "pesqmes7=Digite+o+texto+e+ache+f%E1cil"
#territorio_da_cidadania
form_territorio_da_cidadania <- dplyr::filter(territorio_da_cidadania.df, territorio_da_cidadania.df$id %in% territorio_da_cidadania)
form_territorio_da_cidadania <- paste0("STerrit%F3rio_da_Cidadania=", form_territorio_da_cidadania$value, collapse = "&")
form_pesqmes8 <- "pesqmes8=Digite+o+texto+e+ache+f%E1cil"
#mesorregiao_pndr
form_mesorregiao_pndr <- dplyr::filter(mesorregiao_pndr.df, mesorregiao_pndr.df$id %in% mesorregiao_pndr)
form_mesorregiao_pndr <- paste0("SMesorregi%E3o_PNDR=", form_mesorregiao_pndr$value, collapse = "&")
#amazonia_legal
form_amazonia_legal <- dplyr::filter(amazonia_legal.df, amazonia_legal.df$id %in% amazonia_legal)
form_amazonia_legal <- paste0("SAmaz%F4nia_Legal=", form_amazonia_legal$value, collapse = "&")
#semiarido
form_semiarido <- dplyr::filter(semiarido.df, semiarido.df$id %in% semiarido)
form_semiarido <- paste0("SSemi%E1rido=", form_semiarido$value, collapse = "&")
#faixa_de_fronteira
form_faixa_de_fronteira <- dplyr::filter(faixa_de_fronteira.df, faixa_de_fronteira.df$id %in% faixa_de_fronteira)
form_faixa_de_fronteira <- paste0("SFaixa_de_Fronteira=", form_faixa_de_fronteira$value, collapse = "&")
#zona_de_fronteira
form_zona_de_fronteira <- dplyr::filter(zona_de_fronteira.df, zona_de_fronteira.df$id %in% zona_de_fronteira)
form_zona_de_fronteira <- paste0("SZona_de_Fronteira=", form_zona_de_fronteira$value, collapse = "&")
#municipio_de_extrema_pobreza
form_municipio_de_extrema_pobreza <- dplyr::filter(municipio_de_extrema_pobreza.df, municipio_de_extrema_pobreza.df$id %in% municipio_de_extrema_pobreza)
form_municipio_de_extrema_pobreza <- paste0("SMunic%EDpio_de_extrema_pobreza=", form_municipio_de_extrema_pobreza$value, collapse = "&")
form_pesqmes14 <- "pesqmes14=Digite+o+texto+e+ache+f%E1cil"
#capitulo_cid10
form_capitulo_cid10 <- dplyr::filter(capitulo_cid10.df, capitulo_cid10.df$id %in% capitulo_cid10)
form_capitulo_cid10 <- paste0("SCap%EDtulo_CID-10=", form_capitulo_cid10$value, collapse = "&")
form_pesqmes15 <- "pesqmes15=Digite+o+texto+e+ache+f%E1cil"
#grupo_cid10
form_grupo_cid10 <- dplyr::filter(grupo_cid10.df, grupo_cid10.df$id %in% grupo_cid10)
form_grupo_cid10 <- paste0("SGrupo_CID-10=", form_grupo_cid10$value, collapse = "&")
form_pesqmes16 <- "pesqmes16=Digite+o+texto+e+ache+f%E1cil"
#categoria_cid10
form_categoria_cid10 <- dplyr::filter(categoria_cid10.df, categoria_cid10.df$id %in% categoria_cid10)
form_categoria_cid10 <- paste0("SCategoria_CID-10=", form_categoria_cid10$value, collapse = "&")
form_pesqmes17 <- "pesqmes17=Digite+o+texto+e+ache+f%E1cil"
#causa_br_cid10
form_causa_br_cid10 <- dplyr::filter(causa_br_cid10.df, causa_br_cid10.df$id %in% causa_br_cid10)
form_causa_br_cid10 <- paste0("SCausa_-_CID-BR-10=", form_causa_br_cid10$value, collapse = "&")
#causa_mal_definida
form_causa_mal_definida <- dplyr::filter(causa_mal_definida.df, causa_mal_definida.df$id %in% causa_mal_definida)
form_causa_mal_definida <- paste0("SCausa_mal_definidas=", form_causa_mal_definida$value, collapse = "&")
form_pesqmes19 <- "pesqmes19=Digite+o+texto+e+ache+f%E1cil"
#faixa_etaria
form_faixa_etaria <- dplyr::filter(faixa_etaria.df, faixa_etaria.df$id %in% faixa_etaria)
form_faixa_etaria <- paste0("SFaixa_Et%E1ria=", form_faixa_etaria$value, collapse = "&")
form_pesqmes20 <- "pesqmes20=Digite+o+texto+e+ache+f%E1cil"
#faixa_etaria_ops
form_faixa_etaria_ops <- dplyr::filter(faixa_etaria_ops.df, faixa_etaria_ops.df$id %in% faixa_etaria_ops)
form_faixa_etaria_ops <- paste0("SFaixa_Et%E1ria_OPS=", form_faixa_etaria_ops$value, collapse = "&")
form_pesqmes21 <- "pesqmes21=Digite+o+texto+e+ache+f%E1cil"
#faixa_etaria_det
form_faixa_etaria_det <- dplyr::filter(faixa_etaria_det.df, faixa_etaria_det.df$id %in% faixa_etaria_det)
form_faixa_etaria_det <- paste0("SFaixa_Et%E1ria_det=", form_faixa_etaria_det$value, collapse = "&")
#faixa_etaria_menor1a
form_faixa_etaria_menor1a <- dplyr::filter(faixa_etaria_menor1a.df, faixa_etaria_menor1a.df$id %in% faixa_etaria_menor1a)
form_faixa_etaria_menor1a <- paste0("SFx.Et%E1ria_Menor_1A=", form_faixa_etaria_menor1a$value, collapse = "&")
#sexo
form_sexo <- dplyr::filter(sexo.df, sexo.df$id %in% sexo)
form_sexo <- paste0("SSexo=", form_sexo$value, collapse = "&")
#cor_raca
form_cor_raca <- dplyr::filter(cor_raca.df, cor_raca.df$id %in% cor_raca)
form_cor_raca <- paste0("SCor%2Fra%E7a=", form_cor_raca$value, collapse = "&")
#estado_civil
form_estado_civil <- dplyr::filter(estado_civil.df, estado_civil.df$id %in% estado_civil)
form_estado_civil <- paste0("SEstado_civil=", form_estado_civil$value, collapse = "&")
#local_ocorrencia
form_local_ocorrencia <- dplyr::filter(local_ocorrencia.df, local_ocorrencia.df$id %in% local_ocorrencia)
form_local_ocorrencia <- paste0("SLocal_ocorr%EAncia=", form_local_ocorrencia$value, collapse = "&")
form_data <- paste(form_linha, form_coluna, form_conteudo, form_periodo, form_pesqmes1, form_municipio,
form_pesqmes2, form_capital, form_pesqmes3, form_cir, form_pesqmes4, form_macrorregiao_de_saude,
form_pesqmes5, form_microrregiao_ibge, form_pesqmes6, form_ride, form_pesqmes7,
form_territorio_da_cidadania, form_pesqmes8, form_mesorregiao_pndr, form_amazonia_legal,
form_semiarido, form_faixa_de_fronteira, form_zona_de_fronteira, form_municipio_de_extrema_pobreza,
form_pesqmes14, form_capitulo_cid10, form_pesqmes15, form_grupo_cid10, form_pesqmes16, form_categoria_cid10,
form_pesqmes17, form_causa_br_cid10, form_causa_mal_definida, form_pesqmes19, form_faixa_etaria,
form_pesqmes20, form_faixa_etaria_ops, form_pesqmes21, form_faixa_etaria_det,
form_faixa_etaria_menor1a, form_sexo, form_cor_raca, form_estado_civil, form_local_ocorrencia,
"formato=table&mostre=Mostra", sep = "&")
form_data <- gsub("\\\\u00", "%", form_data)
##### REQUEST FORM AND DATA WRANGLING ####
site <- httr::POST(url = "http://tabnet.datasus.gov.br/cgi/tabcgi.exe?sim/cnv/obt10br.def",
body = form_data)
tabdados <- httr::content(site, encoding = "Latin1") %>%
rvest::html_nodes(".tabdados tbody td") %>%
rvest::html_text() %>%
trimws()
col_tabdados <- httr::content(site, encoding = "Latin1") %>%
rvest::html_nodes("th") %>%
rvest::html_text() %>%
trimws()
f1 <- function(x) x <- gsub("\\.", "", x)
f2 <- function(x) x <- as.numeric(as.character(x))
tabela_final <- as.data.frame(matrix(data = tabdados, nrow = length(tabdados)/length(col_tabdados),
ncol = length(col_tabdados), byrow = TRUE))
names(tabela_final) <- col_tabdados
tabela_final[-1] <- lapply(tabela_final[-1], f1)
tabela_final[-1] <- suppressWarnings(lapply(tabela_final[-1], f2))
tabela_final
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.