Created
June 7, 2024 19:25
-
-
Save fernandobarbalho/d64d7abd946887200fb118a6fd209fee to your computer and use it in GitHub Desktop.
Busca dados do censo sobre acesso a abastecimento de água na rede central
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
domicilio_municipios_tipo_abastecimento_agua<- | |
get_sidra(x = 6804, | |
variable = c(1000381), | |
#period = c("last" = 12), | |
geo = "City", | |
#geo.filter = "RS", | |
classific = "c301", | |
category = list(c(31471)), | |
header = FALSE, | |
format = 3) | |
domicilio_municipios_tipo_abastecimento_agua %>% | |
mutate(tipo_municipio = ifelse(str_detect( str_to_lower(D1N),"água"), | |
"Município com água no nome", | |
"Município sem água no nome")) %>% | |
ggplot(aes(x=tipo_municipio, y= V)) + | |
geom_boxplot() + | |
theme_light() + | |
theme( | |
panel.background = element_rect(fill = "lightblue"), | |
panel.grid = element_blank() | |
) + | |
labs(title = "Abastecimento de água da rede geral de distribuição ", | |
subtitle = "Proporção de residências por cidade", | |
y= "%", | |
x="", | |
caption= "Fonte: Censo 2022 - IBGE") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment