Public
Edited
May 1, 2022
2 forks
2 stars
Insert cell
Insert cell
Insert cell
import {world_gdp_growth} from "@emfielduva/dvlib_sampledata"
Insert cell
world_gdp_growth
Insert cell
Inputs.table(world_gdp_growth)
Insert cell
Insert cell
tallGDPdata = {
const tallGDPdata = [];
world_gdp_growth.forEach(d => {
for (let i=1960; i<=2012; i++) {
tallGDPdata.push({"Country Name": d["Country Name"], year: i, value: d[i]});
}
})
return tallGDPdata;
}
Insert cell
Inputs.table(tallGDPdata)
Insert cell
Insert cell
heatmap1 = Plot.plot({
width: 400,
//x: {axis: null},
marks: [
Plot.cell(tallGDPdata, {
x: "year",
y: "Country Name",
fill: "value"
})
]
})
Insert cell
heatmap1
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
<svg width="1000" height="1500">
<g id="heatmap"></g>
<text x="500" y="30" style="font-size: 14px; font-weight: bold;">Float over and click on cells.</text>
<text id="explain" x="500" y="100" style="font-size: 20px; font-weight: bold;"></text>
</svg>

<div id="controls">
<button id="show">Show All</button>
</div>

<style>
#controls {position: absolute; top:40px; left: 495px;}
button {background-color: #fefefe; border: 1px solid #eee; border-radius: 3px; cursor: pointer;}
</style>
Insert cell
hmElem = d3.select(svgContainer).select("#heatmap")
Insert cell
heatmap2 = dvHeatmap(hmElem,tallGDPdata,"year","Country Name","value",options)
Insert cell
options = ({
boxSize: 5,
paddingX: 1,
colorScale: colorScale, // next cell below
startPos: {x:100,y:20}, // shifts it to accomodate the side and top labels
rotateColumnTextDeg: -60 // negative directions go counter-clockwise. Azimuth not Cartesian.
})
Insert cell
colorScale = d3.scaleLinear().domain([-50,0,50]).range(["red","white","green"])
Insert cell
Insert cell
explain = (evt,d) => {
let thisElem = evt.currentTarget;
let elemD3 = d3.select(thisElem);
d3.select("#explain").text(d["Country Name"] + ": " + d.year) ;
}
Insert cell
highlightYear = (evt,d) => {
let thisElem = evt.currentTarget;
let selectedYear = d.year;
dimAll();
heatmap2.filter(d => d.year == selectedYear).style("opacity","");
}
Insert cell
dimAll = () => {
heatmap2.style("opacity",0.1)
}
Insert cell
showAll = () => {
heatmap2.style("opacity","")
}
Insert cell
heatmap2.on("mouseover", explain)
Insert cell
heatmap2.on("click", highlightYear)
Insert cell
{
// register event listeners
const btns = d3.select(svgContainer).select("#controls");
btns.select("#show").on("click", showAll);
}
Insert cell
highlight = {
heatmap2.filter(d => toNum(d.value) < range.low || toNum(d.value) > range.high).style("stroke","");
heatmap2.filter(d => toNum(d.value) >= range.low && toNum(d.value) <= range.high).style("stroke","steelblue");
}
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