Public
Edited
Feb 26, 2023
Insert cell
Insert cell
Insert cell
Insert cell
viewof quantile = Inputs.select(quantiles)
Insert cell
Insert cell
chart = {
const svg = d3.create('svg')
.attr('viewBox', [0, 0, width, height])

svg.append('g')
.selectAll('path')
.data(zuerichGeo.features)
.enter()
.append("path")
.attr("fill", d => colorScale(quantileAccessor(zoneDataAccessor(d))))
.attr("stroke-width", 0)
.attr('vector-effect', 'non-scaling-stroke')
.style("pointer-events", "none")
.attr("d", path)
// svg.append('g')
// .append("path")
// .attr("fill", 'none')
// .attr("stroke", '#222')
// .attr("stroke-width", 1)
// .attr('vector-effect', 'non-scaling-stroke')
// .style("pointer-events", "none")
// .attr("d", path(zuerichGeo))

svg.append('g')
.selectAll('text')
.data(sortedAllZonesSelection)
.enter()
.append("text")
.attr('text-anchor', 'end')
.attr('alignment-baseline', "middle")
.attr('font-size', fontSize)
.text(nameAccessor)
.attr('vector-effect', 'non-scaling-stroke')
.style("pointer-events", "none")
.attr('x', (width / 2 + pad) + width / 4 - textPad)
.attr('y', (_, i) => yScale(i) + yScale.bandwidth() / 2)
.attr('width', d => widthScale(quantileAccessor(d)))
.attr("height", yScale.bandwidth())

svg.append('g')
.selectAll('rect')
.data(sortedAllZonesSelection)
.enter()
.append("rect")
.attr("fill", d => colorScale(quantileAccessor(d)))
.attr("stroke-width", 0)
.attr('vector-effect', 'non-scaling-stroke')
.style("pointer-events", "none")
.attr('x', (width / 2 + pad) + width / 4 )
.attr('y', (_, i) => yScale(i))
.attr('width', d => widthScale(quantileAccessor(d)))
.attr("height", yScale.bandwidth())

return svg.node()
}
Insert cell
yScale = d3.scaleBand()
.range([pad, height - pad])
.domain(sortedAllZonesSelection.map((_, i) => i))
Insert cell
widthScale = d3.scaleLinear()
.range([0, (width / 2 - 2 * pad) / 2])
.domain(allZonesSelectionQuantilesExtent)
Insert cell
colorScale = d3.scaleSequential(allZonesSelectionQuantilesExtent, d3.interpolateViridis)
Insert cell
zoneDataAccessor = d => zuerichMoneyGroup.get(d.properties.qnr).get(year).get(rateType)[0]
Insert cell
allZonesSelectionQuantilesExtent = {
const extent = d3.extent(sortedAllZonesSelection, quantileAccessor)

extent[0] = d3.max([extent[0] - 10, 0])
extent[1] = extent[1] + 10

return extent
}
Insert cell
sortedAllZonesSelection = allZonesSelection
.sort((a, b) => d3.descending(quantileAccessor(a), quantileAccessor(b)))
Insert cell
quantileAccessor = d => +d[quantile]
Insert cell
nameAccessor = d => d.QuarLang
Insert cell
Insert cell
allZonesGroup = d3.group(zuerichMoney, yearAccessor, rateTypeAccessor)
Insert cell
zuerichMoneyGroup = d3.group(zuerichMoney, zoneAccessor, yearAccessor, rateTypeAccessor)
Insert cell
quantiles = ['SteuerEinkommen_p50', 'SteuerEinkommen_p25', 'SteuerEinkommen_p75']
Insert cell
rateTypeAccessor = d => d.SteuerTarifLang
Insert cell
yearAccessor = d => +d.StichtagDatJahr
Insert cell
zoneAccessor = d => +d.QuarSort
Insert cell
zuerichMoney = FileAttachment("zuerich_money.csv").csv()
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
fontSize = 11
Insert cell
textPad = 5
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