Published
Edited
May 4, 2020
1 fork
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
mapConfig = ({
width: 300,
height: 400,
marginX: 20,
marginY: 80,
clippedWidth: 300 - 40,
clippedHeight: 400 - 160,
titleX: 10,
titleY: 30
})
Insert cell
makePath = d3.geoPath(projection)
Insert cell
projection = d3
.geoMercator()
.center([128, 36])
.fitSize([mapConfig.clippedWidth, mapConfig.clippedHeight], geoJson)
Insert cell
dataUrl = 'https://docs.google.com/spreadsheets/d/e/2PACX-1vS1ETNfNzSDw78jOEi39OLhcHl8TTzBQ40iQE-ZiXnBhYzupHsNcfkcFNjmQIUjb2HTrt522kxzSvGE/pub?gid=277509267&single=true&output=tsv'
Insert cell
uniquePlace.filter(d => !korProvinces.some(v => v === d))
Insert cell
dataByNth.values().map(d => ({
...d,
maxValue: d3.max(d.values, d => d.values.length),
minValue: d3.min(d.values, d => d.values.length)
}))
Insert cell
d3.max(dataByNth.values(), d => d.values.length)
Insert cell
d3.min(dataByNth.values(), d => d.values.length)
Insert cell
dataByNth = d3.map(
d3
.nest()
.key(d => d.nth)
.key(d => d.birthPlace)
.entries(data),
d => d.key
)
Insert cell
uniquePlace = d3
.map(data, d => {
if (d.birthPlace === '') return 'noname';
if (placeReWire[d.birthPlace]) return placeReWire[d.birthPlace];
return d.birthPlace;
})
.keys()
Insert cell
getAgeThreshold = age => Math.floor(age / 10) * 10
Insert cell
uniqueName = d3.map(data, d => d.nameChn)
Insert cell
Insert cell
maxAge = d3.max(data, d => d.age)
Insert cell
data = d3.tsv(dataUrl, parseRawTsv)
Insert cell
Insert cell
Insert cell
korProvinces = d3.map(geoJson.features, d => d.properties.name).keys()
Insert cell
topojson = require('topojson@v3.0.2')
Insert cell
geoJson = topojson.feature(topoData, topoData.objects.skorea_provinces_2018_geo)
Insert cell
topoData = await FileAttachment("topoKorea.json").json()
Insert cell
import { legend } from '@d3/color-legend'
Insert cell
d3 = require('d3@5.15.0')
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