Published
Edited
Nov 29, 2021
Insert cell
# 24 % des ménages détiennent 68 % des logements possédés par des particuliers
### (INSEE)
Insert cell
https://www.insee.fr/fr/statistiques/5432517?sommaire=5435421&q=propri%C3%A9t%C3%A9%20immobili%C3%A8re
Insert cell
domains = ["0 logement", "1 logement", "2 logements", "3 à 4 logements", "5 à 9 logements", "10 ou plus"]
// ["0 logement", "1 logement", "2 logements", "3 à 4 logements", "5 à 9 logements", "10 à 19 logements", "20 ou plus"]
Insert cell
firstLabel = "2/ Part des logements (%)"
Insert cell
secondLabel = "1/ Part des ménages (%)"
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Plot.plot({
height: 400,
width: 400,
y: {
label: "Pourcentage (%)",
},
facet: {
data: dataset,
x: d => d.x,
marginLeft: 30,
inset: 10,
},
color: {
range: colorscale,
domain: domains,
},
marks: [
Plot.barY(dataset, {y: "value", fill: "cat"}),
Plot.text(dataset, {y: "textPosition", text: d => `${d.value}%`, fill: "white", fontWeight: 900}),
Plot.ruleY([0, 100]),
]
})
Insert cell
_"la part des logements possédés par chaque groupe de ménages est calculée en rapportant le nombre de logements
distincts concernés au nombre total de logements possédés par les ménages. Lorsqu’un logement est possédé par des ménages appartenant à des ménages de groupes différents, il est comptabilisé une fois dans chaque groupe, les parts ne s'additionnent
donc pas."_

INSEE
Insert cell
import {serialize} from "@palewire/saving-json"
Insert cell
import {legend} from "@d3/color-legend"
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more