Published
Edited
Dec 25, 2020
Fork of Choropleth
2 forks
Insert cell
Insert cell
Insert cell
chart = {
const svg = d3.create("svg")
.attr("viewBox", [0, 0, 975, 610]);

svg.append("g")
.attr("transform", "translate(610,20)")
.append(() => legend({color, title: data.title, width: 250}));

svg.append("g")
.selectAll("path")
.data(topojson.feature(us, us.objects.counties).features)
.join("path")
.attr("fill", d => color(data.get(d.id)))
.attr("d", path)
.append("title")
.text(d => `${d.properties.name}, ${states.get(d.id.slice(0, 2)).name}
${format(data.get(d.id))}`);

svg.append("path")
.datum(topojson.mesh(us, us.objects.states, (a, b) => a !== b))
.attr("fill", "none")
.attr("stroke", "white")
.attr("stroke-linejoin", "round")
.attr("d", path);

return svg.node();
}
Insert cell
data = Object.assign(new Map(datareturn), {title: "COVID-19 "+dd1+" in the US, "+date})
Insert cell
datareturn = {
if (dd1 == "Cases") {
var df = d3.csv("https://raw.githubusercontent.com/nytimes/covid-19-data/master/live/us-counties.csv", ({fips, cases}) => [fips, +cases]);
}
else if (dd1 == "Deaths") {
var df = d3.csv("https://raw.githubusercontent.com/nytimes/covid-19-data/master/live/us-counties.csv", ({fips, deaths}) => [fips, +deaths]);
}
else if (dd1 == "Confirmed Cases") {
var df = d3.csv("https://raw.githubusercontent.com/nytimes/covid-19-data/master/live/us-counties.csv", ({fips, confirmed_cases}) => [fips, +confirmed_cases]);
}
else if (dd1 == "Confirmed Deaths") {
var df = d3.csv("https://raw.githubusercontent.com/nytimes/covid-19-data/master/live/us-counties.csv", ({fips, confirmed_deaths}) => [fips, +confirmed_deaths]);
}
else if (dd1 == "Probable Cases") {
var df = d3.csv("https://raw.githubusercontent.com/nytimes/covid-19-data/master/live/us-counties.csv", ({fips, probable_cases}) => [fips, +probable_cases]);
}
else if (dd1 == "Probable Deaths") {
var df = d3.csv("https://raw.githubusercontent.com/nytimes/covid-19-data/master/live/us-counties.csv", ({fips, probable_deaths}) => [fips, +probable_deaths]);
}
return df;
}
Insert cell
read_csv = d3.csv("https://raw.githubusercontent.com/nytimes/covid-19-data/master/live/us-counties.csv", ({date}) => date)
Insert cell
date = read_csv[0]
Insert cell
color = {if (dd1 == "Cases" || dd1 == "Confirmed Cases") {return d3.scaleSequential([0, 20000], d3.interpolateReds);} else if (dd1 == "Deaths" || dd1 == "Confirmed Deaths") {return d3.scaleSequential([0, 500], d3.interpolateReds);} else if (dd1 == "Probable Cases") {return d3.scaleSequential([0, 2000], d3.interpolateInferno);} else if (dd1 == "Probable Deaths") {return d3.scaleSequential([0, 50], d3.interpolateInferno);}}
Insert cell
path = d3.geoPath()
Insert cell
format = d => `${d}`
Insert cell
states = new Map(us.objects.states.geometries.map(d => [d.id, d.properties]))
Insert cell
us = FileAttachment("counties-albers-10m@1.json").json()
Insert cell
topojson = require("topojson-client@3")
Insert cell
d3 = require("d3@5")
Insert cell
import {legend} from "@d3/color-legend"
Insert cell
import {select} from "@jashkenas/inputs"
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