Public
Edited
Oct 29, 2023
Fork of World Map
Insert cell
Insert cell
viewof year = Scrubber(years, {
delay: 250,
loop: false,
initial: 2022,
autoplay: false
})
Insert cell
chart = {
const svg = d3.create("svg").attr("viewBox", `0, 0, ${width}, ${height}`)
const tooltip = d3.select("body").append("div")
.attr("class", "tooltip")
.style("position", "absolute")
.style("visibility", "hidden")
svg.selectAll("path")
.data(countries.features)
.enter()
.append("path")
.attr("d", path)
.attr("stroke", "#111")
.attr("stroke-width", 0.5)
.attr("fill", d => d.properties.data?.get(year)
? cScale(d.properties.data.get(year)[0].mean_homo)
: "lightgrey")
.on("mouseover", function(event, d) {
let text = d.properties.name
const mean_homo = d.properties.data.get(year)[0].mean_homo
text = text + "\nAcceptability: " + mean_homo
showToolTip(text, [event.pageX, event.pageY])
})
.on("mousemove", function(event) {
d3.select(".tooltip")
.style("top", event.pageY - 10 + "px")
.style("left", event.pageX + 10 + "px")
})
.on("mouseout", function() {
d3.select(".tooltip").style("visibility", "hidden")
})
return svg.node()
}
Insert cell
Insert cell
cScale = d3.scaleSqrt()
.domain([
d3.min(data, d => d.mean_homo),
0,
d3.max(data, d => d.mean_homo)])
.range([-1, 0, 1])
.interpolate((a, b) => a < 0
? t => d3.interpolateReds(1-t)
: t => d3.interpolateBlues(t))

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