Logements sociaux financés pour rénovation

Données - Ville de Paris

Code
source(here::here("_rinit.R"))
invisible(Sys.setlocale("LC_TIME", "fr_FR.UTF-8"))
# cd ~/iCloud/website/data/paris; /usr/local/bin/R -e 'quarto::quarto_render("indicateur-dlh-logements-sociaux-finances-pour-renovation.qmd")'

knitr::opts_chunk$set(echo = TRUE, message = FALSE, warning = FALSE,
                      fig.width = 8, fig.height = 5, dpi = 150)

dlh_path <- here::here("data", "paris", "indicateur-dlh-logements-sociaux-finances-pour-renovation.parquet")
dlh <- arrow::read_parquet(dlh_path) |>
  dplyr::transmute(annee = as.integer(format(annee_de_financement, "%Y")),
                   n = nombre_de_logements_sociaux_finances) |>
  dplyr::arrange(annee)

n_annees <- nrow(dlh)
total    <- sum(dlh$n)

theme_barres <- theme_minimal(base_size = 12) +
  theme(plot.title = element_text(face = "bold"),
        plot.subtitle = element_text(colour = "grey35"),
        panel.grid.major.y = element_blank())

Nombre de logements sociaux financés chaque année pour des opérations de rénovation (par opposition à la construction neuve), de 2009 à 2025 — indicateur de suivi de la Direction du Logement et de l’Habitat (DLH). 79 863 logements financés au total sur 17 années.

Évolution

Code
ggplot(dlh, aes(annee, n)) +
  geom_col(fill = "#3b6f8a", width = 0.65) +
  geom_text(aes(label = format(n, big.mark = " ")), vjust = -0.4, size = 3) +
  scale_x_continuous(breaks = dlh$annee) +
  scale_y_continuous(expand = expansion(mult = c(0, 0.12))) +
  labs(title = "Logements sociaux financés pour rénovation",
       subtitle = sprintf("Moyenne annuelle : %s logements", format(round(mean(dlh$n)), big.mark = " ")),
       x = NULL, y = NULL) +
  theme_barres +
  theme(axis.text.x = element_text(angle = 45, hjust = 1))

Toutes les années

Code
dlh |>
  dplyr::arrange(dplyr::desc(annee)) |>
  dplyr::transmute(Année = annee, `Logements financés` = n) |>
  gt::gt() |>
  gt::fmt_number(columns = `Logements financés`, decimals = 0, sep_mark = " ") |>
  gt::tab_options(table.width = "100%")
Année Logements financés
2025 6 441
2024 5 057
2023 5 097
2022 4 237
2021 4 688
2020 3 740
2019 4 859
2018 4 690
2017 5 035
2016 4 824
2015 4 459
2014 4 398
2013 5 885
2012 4 210
2011 3 303
2010 4 646
2009 4 294

Source & données

Code
tibble::tibble(
  ` ` = c("Jeu de données", "Producteur", "Licence", "Fichier", "Mise à jour", "Observations"),
  `  ` = c(
    "[Logements sociaux financés pour rénovation](https://opendata.paris.fr/explore/dataset/indicateur-dlh-logements-sociaux-finances-pour-renovation/information/)",
    "Direction du Logement et de l'Habitat (DLH) — Ville de Paris",
    "Open Database License (ODbL)",
    sprintf("`data/paris/indicateur-dlh-logements-sociaux-finances-pour-renovation.parquet` (%s ko)",
            round(file.size(dlh_path) / 1024)),
    format(as.Date(file.mtime(dlh_path)), "%d %B %Y"),
    sprintf("%d années, %s logements au total", n_annees, format(total, big.mark = " "))
  )
) |>
  gt::gt() |> gt::fmt_markdown(columns = `  `) |>
  gt::tab_options(table.width = "100%", column_labels.hidden = TRUE)
Jeu de données Logements sociaux financés pour rénovation
Producteur Direction du Logement et de l’Habitat (DLH) — Ville de Paris
Licence Open Database License (ODbL)
Fichier data/paris/indicateur-dlh-logements-sociaux-finances-pour-renovation.parquet (1 ko)
Mise à jour 05 septembre 2026
Observations 17 années, 79 863 logements au total