library(tidyverse)
library(sf)
library(here)
library(DT)
<- here("data/raw_data/v2/zonificacion/zonificacion_municipios/zonificacion_municipios.shp")
municipal_boundaries_data_file <- here("data/raw_data/v2/zonificacion/zonificacion_municipios/nombres_municipios.csv")
municipality_names_file <- here("data/raw_data/v2/zonificacion/zonificacion_municipios/poblacion_municipios.csv")
municipality_population_file <- here("data/raw_data/v2/zonificacion/poblacion.csv") all_population_file
Municipal population CSV missing population counts
tabular data
missing data
importance: low
Status: ⚠️ active
Importance: 1 - low
Summary: The dataset contains missing population counts for 49 municipalities in the CSV file poblacion_municipios.csv
in the zonificacion_municipios
folder, as well as in the poblacion.csv
file in the zonificacion
folder.
Expected Results: The population data for all municipalities should be available in the CSV file poblacion_municipios.csv
in the zonificacion_municipios
folder and/or in the poblacion.csv
file in the zonificacion
folder.
Steps to Reproduce
- Load Data
Load libraries and define data files.
Load the data and join the municipality names to the boundaries, as well as population from all population file and municipality population file.
<- read_sf(municipal_boundaries_data_file)
municipality_boundaries <- municipality_boundaries |>
municipality_boundaries_spain_only filter(! grepl("FR|PT|externo", ID) )
<- read_delim(municipality_names_file,
municipality_names delim = "|", show_col_types = FALSE, name_repair = "unique_quiet")
<- read_delim(municipality_population_file, col_names = c("ID", "population"),
municipality_population delim = "|", show_col_types = FALSE, name_repair = "unique_quiet")
<- read_delim(all_population_file,
all_population delim = "|", show_col_types = FALSE, name_repair = "unique_quiet")
<- municipality_boundaries_spain_only |>
municipality_boundaries_spain_only left_join(municipality_names |> select(ID, name), by = c("ID")) |>
left_join(municipality_population, by = c("ID")) |>
left_join(all_population |>
group_by(municipio) |>
summarise(population_all = sum(poblacion, na.rm = TRUE), .groups = "drop") |>
rename(ID = municipio),
by = c("ID"))
Results
- Missing population (loaded from the
poblacion_municipios.csv
inzonificacion_municipios
folder)
|>
municipality_boundaries_spain_only filter(is.na(population)) |>
nrow()
[1] 49
- Population data for municipalities also unavailable in the
poblacion.csv
in thezonificacion
There are no population counts for these districts in the poblacion.csv
file either.
|>
municipality_boundaries_spain_only filter(!is.na(population_all)) |>
filter(population_all == 0) |>
nrow()
[1] 49
- Names of Municipalities with missing population data
::datatable(municipality_boundaries_spain_only |>
DTst_drop_geometry() |>
filter(is.na(population))
)
Links to the original files
source(here("R/901-download-helpers.R"))
<- load_latest_v2_xml()
files
# Filter relevant files
<- files |>
relevant_files filter(basename(local_path) %in% basename(c(municipal_boundaries_data_file, municipality_names_file,
municipality_population_file, all_population_file)) )
# Create HTML links
<- relevant_files |>
relevant_files mutate(target_url = paste0("<a href='", target_url, "' target='_blank'>", target_url, "</a>"))
# Render the DT table with links
datatable(relevant_files, escape = FALSE, options = list(pageLength = 5))