Published
Edited
Aug 25, 2020
6 stars
Andy's Walgreens COVID-19 Tracker TrackerBelgium Vaccination Tracker - Progress of the vaccination campaignVaccination against covid-19 in France500,000 COVID-19 DeathsCovid-19 vaccinations: BubblesTime Spiral with a COVID DemoCOVID MasksGrid Cartogram component with live COVID demos (plus a MapEditor)The US COVID SyringeCOVID-19 DKCOVID-19 World Community Mobility Report by GoogleCOVID 19Chicago COVID ZIP SparklinesThe COVID Syringeభారతదేశంలో కోవిడ్-19SVG DataGrid with many features and a live COVID Dashboard demoThe spread of Covid-19 in New MexicoHeatmap of COVID-19 Confirmed Cases by Age over Time in JapanThe CoViD-19 ReportCovid19 WorldwideMassachusetts Coronavirus Cases by TownChoropleth map about Covid19 in FranceWell ordered coronavirus heatmaps for US and the WorldCOVID-19 Racial/Ethnic Mortality AnalysisProPublica's COVID Arrow MapClustering students to slow virus spread inside schoolsCOVID-19 in the USAWho Is Wearing Masks in the U.S.Covid-19 Viz RoundupCoronavirus StatsThe Covid-19 Crisis' Impact on the Number of US Flight PassengersCOVID-19 Daily New CasesCOVID-19 CasesCOVID–19 Bubble Chart with D3 RenderCoronavirus Deaths by Race / Ethnicity
How many SARS-CoV-2 tests are we running in the U.S.?
COVID-19 Onset vs. ConfirmationPeaks in confirmed daily deaths due to COVID-19 so farCOVID-19 in the U.S.Recreating John Burn-Murdoch’s Coronavirus trackerTracking COVID-19 Cases in VietnamCOVID-19 in NYC by Zip Code & IncomeVisualizing the Network Meta-Analysis of Covid-19 Studiesxkcd COVID-19 spread sketchCOVID-19's deaths in EuropeCovid-19 (corona virus) deaths per 1,000,000 peopleCOVID-19 Bubble map or spike map? (Twitter debate)A Timeline of Shelter-in-PlaceWhere’s that $2 trillion going?Estimating SARS-COV-2 infectionsCODAVIM - CountySARS-CoV-2 Epi CurveCOVID-19 Curves (U.S.)COVID-19 Cases by CountyCOVID-19 world growth rateA graphical experiment of exponential spreadCOVID-19 by US countyCOVID-19 Confirmed vs. New cases"Live" Logistic Coronavirus Death CounterInfografiche: COVID-19 in ItaliaCoronavirus (COVID-19) GlobeBar Chart Race, COVID-19 outbreak Worldwide to 24th March 2020US Coronavirus testing by statesUnited States Coronavirus Daily Cases Map (COVID-19)COVID-19 Numbers by State, Side by SideRecreating NYT U.S. Cases MapCOVID-19 in Washington stateCOVID-19 outbreak in maps and chartsCOVID-19 Spreading trendsRestaurants during COVID-19 social distancingCOVID-19 Countries Trajectories in 3DStates that aren't reporting aspects of their COVID-19 testing processNextstrain Prototyping - Issue 817Reviewing COVID-19 SARS-CoV-2 preprints from medRxiv and bioRxivCoronavirus worldwide evolutionCovid-19 New Cases PunchcardCovid-19 cases per district in Germany.COVID-19 Cases, Deaths, and Recoveries (Select Country)Quarantine NowEmissions in WuhanCOVID-19(nCOV-2019) Outbreak in S.KoreaMovement of population between provinces in 2019-nCoVComparing COVID-19 GrowthCovid-19 derived chartCoronavirus Trends (COVID-19)Netherlands Coronavirus Daily Cases Map (COVID-19)Map and timeline of Corona outbreakSARS-CoV-2 Phylogenetic TreeCoronavirus data (covid-19)Visualizing the Logic of Exponential Viral SpreadItaly Coronavirus Daily Cases Map (COVID-19)COVID-19 Fatality Rate
Also listed in…
Coronavirus
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
usData = (await fetch('https://corsproxy.harrislapiroff.com/https://covidtracking.com/api/v1/us/daily.json')).json()
Insert cell
statesData = (await fetch('https://corsproxy.harrislapiroff.com/https://covidtracking.com/api/v1/states/daily.json')).json()
Insert cell
Insert cell
annotateData = (data, movingAverageN) => {
data.sort((a, b) => a.date - b.date)
return data.map((d, i, a) => {
const startIdx = i < movingAverageN ? 0 : i + 1 - movingAverageN
const dataToAverage = a.slice(startIdx, i + 1)
return {
...d,
positiveIncreaseSMA: average(dataToAverage.map(getPosTestCount)),
negativeIncreaseSMA: average(dataToAverage.map(getNegTestCount)),
totalIncreaseSMA: average(dataToAverage.map(getTestCount)),
}
})
}
Insert cell
Insert cell
activeData = annotateData(
dataFilter === 'ALL' ? usData : statesData.filter(d => d.state === dataFilter),
MOVING_AVERAGE_N
).filter(d => getDate(d) >= DATA_START_DATE)
Insert cell
Insert cell
height = width * .618
Insert cell
Insert cell
Insert cell
xScale = d3.scaleTime()
.domain([DATA_START_DATE, d3.max(usData, getDate)])
.range([margin.left, width - margin.right])
Insert cell
yScale = d3.scaleLinear()
.domain([0, d3.max(activeData, getTestCount)])
.range([height - margin.bottom, margin.top])
.nice()
Insert cell
xAxis = g => g.attr('transform', `translate(0, ${height - margin.bottom})`)
.call(
d3.axisBottom(xScale)
.ticks(width > 400 ? 15 : 5) // Fewer ticks for smaller screen
.tickFormat(d3.timeFormat(width > 400 ? '%b %d' : '%m/%d')) // Concise dates for smaller screen
)
Insert cell
yAxis = g => g.attr('transform', `translate(${margin.left}, 0)`)
.attr('class', 'grid')
.call(
d3.axisLeft(yScale)
.ticks(5)
.tickSize(-width + margin.left + margin.right)
)
.call(g => g.select('.domain').remove())
Insert cell
Insert cell
Insert cell
totalTestsSMALine = d3.area()
.defined(d => !isNaN(getPosSMA(d)))
.x(d => xScale(getDate(d)))
.y1(d => yScale(getTotalSMA(d)))
.y0(d => yScale(getPosSMA(d)) - 1)
Insert cell
posTestsSMALine = d3.area()
.defined(d => !isNaN(getPosSMA(d)))
.x(d => xScale(getDate(d)))
.y1(d => yScale(getPosSMA(d)))
.y0(d => yScale(0))
Insert cell
Insert cell
addInteractivity = (
xScale, // d3 scale
yScale, // d3 scale
g // d3 svg
) => {
const line = g.append('g')
.append('line')
.attr('stroke', 'rgba(0, 0, 0, 0.5)')
.attr('stroke-width', 1)
.attr('x1', 100)
.attr('y1', yScale.range()[0])
.attr('x2', 100)
.attr('y2', yScale.range()[1])
.attr('opacity', 0)
// We're "cheat" a little at interactivity by leveraging Obervable's views functionality
// We start by setting the value of the DOM node to null and then update it according to mouse events
const node = g.node()
node.value = null
const inputEvent = new CustomEvent("input")
g.on('mouseover', function() {
line.attr('opacity', 1)
})
g.on('mouseout', function() {
line.attr('opacity', 0)
node.value = null
node.dispatchEvent(inputEvent)
})
g.on('mousemove', function() {
const mouse = d3.mouse(this)
const xDomainVal = xScale.invert(mouse[0])
// Add 12 hours and clip off the time to round to the nearest midnight
const xDomainValRounded = (new Date(+xDomainVal + 43200000)).setHours(0, 0, 0, 0)
const xRangeVal = xScale.clamp(true)(xDomainValRounded)
// Offset position by 0.5 to get a pixel aligned line
line.attr('x1', xRangeVal + 0.5)
.attr('x2', xRangeVal + 0.5)
node.value = new Date(xDomainValRounded)
node.dispatchEvent(inputEvent)
})
}
Insert cell
Insert cell
testChart = {
const svg = d3.select(DOM.svg(width, height))
svg.append('g').call(yAxis)

const lineConfig = [
{
d: totalTestsSMALine,
fill: TOTAL_COLOR,
stroke: 'none',
},
{
d: posTestsSMALine,
fill: POS_COLOR,
stroke: 'none',
},
]
lineConfig.forEach(conf => {
const line = svg.append('path').datum(activeData)
Object.entries(conf).forEach(([k, v]) => line.attr(k, v))
})
// x-axis has to go after lines so it stacks on top of them
svg.append('g').call(xAxis)
.style('text-anchor', 'end')
.selectAll('text')
.attr('y', 8)
.attr('x', -6)
.attr('transform', 'rotate(-45)')
svg.call(
addInteractivity.bind(
this,
xScale,
yScale,
)
)
return svg
}
Insert cell
Insert cell
posPerYScale = d3.scaleLinear()
.domain([0, 1]).nice()
.range([height - margin.bottom, margin.top])
Insert cell
posPerYAxis = g => g.attr('transform', `translate(${margin.left}, 0)`)
.attr('class', 'grid')
.call(
d3.axisLeft(posPerYScale)
.ticks(10)
.tickFormat(d3.format(".0%"))
.tickSize(-width + margin.left + margin.right)
)
.call(g => g.select('.domain').remove())
Insert cell
Insert cell
posPerLine = d3.line()
.defined(d => !isNaN(getPosPerTest(d)))
.x(d => xScale(getDate(d)))
.y(d => posPerYScale(getPosPerTest(d)))
Insert cell
posPerSMALine = d3.line()
.defined(d => !isNaN(getPosPerTestSMA(d)))
.x(d => xScale(getDate(d)))
.y(d => posPerYScale(getPosPerTestSMA(d)))
Insert cell
Insert cell
posPerTestChart = {
const svg = d3.select(DOM.svg(width, height))

svg.append('g').call(xAxis)
.style('text-anchor', 'end')
.selectAll('text')
.attr('y', 8)
.attr('x', -6)
.attr('transform', 'rotate(-45)')
svg.append('g').call(posPerYAxis)
svg.append('path')
.datum(activeData)
.attr('d', posPerSMALine)
.attr('fill', 'none')
.attr('stroke', POS_COLOR)
.attr('stroke-width', FOREGROUND_WIDTH)
.attr('stroke-dasharray', FOREGROUND_DASH)
svg.call(
addInteractivity.bind(
this,
xScale,
yScale,
)
)
return svg
}
Insert cell
Insert cell
STATE_CHART_WIDTH = width > 600 ? '33%' : '100%'
Insert cell
html`<style type="text/css">
.state-charts-grid {
display: flex;
flex-direction: ${width > 600 ? 'row' : 'column'};
flex-wrap: wrap;
}

.state-charts-grid > * {
flex-basis: ${STATE_CHART_WIDTH};
margin-bottom: 15px;
}

.chart-label {
font-family: sans-serif;
font-weight: bold;
font-size: 12px;
text-transform: uppercase;
letter-spacing: .05em;
text-align: center;
}
</style>`
Insert cell
stateChart = (stateAbbr, width, highlight = 'total') => {
const height = Math.floor(width / 1.618)
const margin = {left: 40, right: 40, top: 10, bottom: 20}
const stateData = annotateData(
statesData.filter(d => d.state === stateAbbr),
MOVING_AVERAGE_N
)
if (stateData.length === 0) return null
const xScale = d3.scaleTime()
.domain([DATA_START_DATE, d3.max(usData, getDate)])
.range([margin.left, width - margin.right])
// Let's make a line for number of tests
const yScaleTotals = d3.scaleLinear()
.domain([0, d3.max(stateData, getTotalSMA)])
.range([height - margin.bottom, margin.top])
.nice()
const testLine = d3.line()
.defined(d => !isNaN(getTotalSMA(d)))
.x(d => xScale(getDate(d)))
.y(d => yScaleTotals(getTotalSMA(d)))

// Let's make a line for positives as a percentage of tsts
const yScalePercentage = d3.scaleLinear()
.domain([0, 1])
.range([height - margin.bottom, margin.top])
.nice()
const posPerTestLine = d3.line()
.defined(d => !isNaN(getPosPerTestSMA(d)))
.x(d => xScale(getDate(d)))
.y(d => yScalePercentage(getPosPerTestSMA(d)))

// Now generate the chart HTML and SVG
const wrapper = d3.select(html`<div class="state-chart"></div>`)
const svg = wrapper.append('svg')
.attr('width', width)
.attr('height', height)

// Add the name underneath the chart
wrapper.append('div')
.attr('class', 'chart-label')
.html(US_STATES[stateAbbr])

// Add the x-axis
svg.append('g')
.attr('transform', `translate(0, ${height - margin.bottom})`)
.call(
d3.axisBottom(xScale)
.ticks(width > 400 ? 5 : 3) // Fewer ticks for smaller screen
.tickFormat(d3.timeFormat(width > 400 ? '%b %d' : '%m/%d')) // Concise dates for smaller screen
.tickSize(5)
)
// Add y-axes
svg.append('g')
.attr('class', 'grid')
.attr('transform', `translate(${margin.left}, 0)`)
.call(
d3.axisLeft(highlight == 'total' ? yScaleTotals : yScalePercentage)
.ticks(5)
.tickFormat(highlight == 'total' ? d3.format('.2s') : d3.format('.0%'))
.tickSize(-width + margin.left + margin.right)
)
.call(g => g.select('.domain').remove())
// Add the test total data
svg.append('path')
.datum(stateData)
.attr('d', testLine)
.attr('fill', 'none')
.attr('stroke', TOTAL_COLOR)
.attr('stroke-width', highlight === 'total' ? 2 : 1)
.attr('stroke-dasharray', highlight === 'total' ? FOREGROUND_DASH : BACKGROUND_DASH)
// Add the pos per test data
svg.append('path')
.datum(stateData)
.attr('d', posPerTestLine)
.attr('fill', 'none')
.attr('stroke', POS_COLOR)
.attr('stroke-width', highlight === 'percentage' ? 2 : 1)
.attr('stroke-dasharray', highlight === 'percentage' ? FOREGROUND_DASH : BACKGROUND_DASH)
const finalPoint = stateData[stateData.length - 1]
const finalPointTotal = getTotalSMA(finalPoint)
svg.append('text')
.attr('x', width - margin.right + 5)
.attr('y', yScaleTotals(finalPointTotal))
.attr('font-family', 'sans-serif')
.attr('font-size', 12)
.attr('font-weight', 'bold')
.attr('fill', TOTAL_COLOR)
.attr('dominant-baseline', 'middle')
.attr('opacity', highlight === 'total' ? 1 : 0.25)
.text(d3.format('.2s')(finalPointTotal))
const finalPointPosPercentage = getPosPerTestSMA(finalPoint)
svg.append('text')
.attr('x', width - margin.right + 5)
.attr('y', yScalePercentage(finalPointPosPercentage))
.attr('font-family', 'sans-serif')
.attr('font-size', 12)
.attr('font-weight', 'bold')
.attr('fill', POS_COLOR)
.attr('dominant-baseline', 'middle')
.attr('opacity', highlight === 'percentage' ? 1 : 0.25)
.text(d3.format('.0%')(finalPointPosPercentage))
return wrapper.node()
}
Insert cell
Insert cell
Insert cell
html`
<style type="text/css">
.grid line {
stroke: #E5E5E5;
}
.grid .tick:first-of-type {
display: none;
}
</style>
`
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
getPosPerTest = d => {
const testCount = getTestCount(d)
if (testCount < MIN_TESTS_FOR_PERCENTAGE) return NaN // If test count is too low to return a useful %age
return getPosTestCount(d) / testCount
}
Insert cell
getPosPerTestSMA = d => {
const testCountSMA = getTotalSMA(d)
if (testCountSMA < MIN_TESTS_FOR_PERCENTAGE) return NaN // If test count is too low to return a useful %age
return getPosSMA(d) / testCountSMA
}
Insert cell
getPointByDate = (data, date) => data.filter(d => date.getTime() == getDate(d).getTime())[0]
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
FOREGROUND_WIDTH = width > 600 ? 4 : 1
Insert cell
BACKGROUND_WIDTH = width > 600 ? 1.5 : 1
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