Public
Edited
Sep 15, 2023
Insert cell
// Heel Amsterdam
setsAms = [
// {
// sets: [0],
// label: "Geen voorziening (77%)",
// size: 364424,
// fill: set0_color
// },
{ sets: [1], label: "Forêt 37", size: 3700, fill: set1_color },
{ sets: [2], label: "Lac 14 ", size: 1300, fill: set2_color },
{ sets: [3], label: "Fleuve ", size: 5100, fill: set3_color },
...d3.range(51 - 12).map((i) => ({
sets: ["A" + i],
label: "A" + i,
size: 100,
fill: "none"
})),
...d3.range(12).map((i) => ({
sets: ["B" + i],
label: "",
size: 100,
fill: "none"
})),
{ sets: [1, 2, 3], label: "solo", size: 100 },
,
{ sets: [1, 2], label: "", size: 1300 },

...d3.range(51 - 12).map((i) => ({
sets: [3, "A" + i],
label: " ",
size: 100
}))
]
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
viewof set4_color = colorPicker("rgb(120,190,50)", "hex")
Insert cell
Insert cell
Insert cell
Insert cell
md`## Verdeling voorzieningen Amsterdam`
Insert cell
vennVoorzieningen = (data) =>
d3
.select(DOM.svg(width, 600))
.call((svg) => {
svg.datum(data).call(venn.VennDiagram().width(width).height(600));
// Circle stylings
svg
.selectAll(".venn-circle path")
.style("fill", (d, i) => d["fill"])
.style("fill-opacity", 0.75);
// Label stylings
// svg.selectAll(".venn-circle text").style("fill", (d, i) => d["fill"]);
svg
.selectAll(".venn-circle text")
.style("fill", "black")
.style("font-size", "24px");

svg.selectAll("text").style("font-family", "Work Sans");

svg.selectAll("g").on("mouseover", function (d, i) {
// Display a tooltip with the current size
svg
.selectAll("g")
.append("text")
.attr("class", "tooltip")
.attr("x", 0)
.attr("y", 580)
.text(
d.label +
": " +
d.size +
" (" +
Math.round(
(d.size /
d3.sum(
data.filter((d) => d.sets.length === 1),
(d) => d.size
)) *
1000
) /
10 +
"%)"
);
});

svg.selectAll("g").on("mouseout", function (d, i) {
// Display a tooltip with the current size
d3.selectAll(".tooltip").text("");
});
})
.node()
Insert cell
Insert cell
Insert cell
Type JavaScript, then Shift-Enter. Ctrl-space for more options. Arrow ↑/↓ to switch modes.

Insert cell
Insert cell
Insert cell
Insert cell
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