Published
Edited
Oct 27, 2020
3 forks
60 stars
Election 2020 County Vote Distribution within a State2020 Presidential Election Time Series AnomaliesMontana 2020 Legislative OutcomesDot-density election maps with WebglPennsylvania 2020 General Election Mail Ballot Requests AnalysisElection Night Results2020 Presidential Election Time SeriesUS Electoral College Results 1900 - 2020Facebook Advertising in the 2020 Presidential ElectionUS Presidential Election Results (1976 - 2020)2020 Presidential Election in ChicagoBlue waveElection 2020: How reliable are different results at different stages?Election 2020 Vote–Time Correlation CartogramElection 2020 Vote Count Speed CartogramWhat’s the connection between these two election bar charts?Spinning counties, November 2020A Better Way to Visualize US Elections 2020 ResultsUS Elections 2020 Results - Deeper LookUS Election 2020Indian Country Today #NativeVote2020Indian Country Today #NativeVote2020As votes are countedTry to impeach this? Challenge accepted!Early Voting Wait Times in Gwinnett County, GeorgiaVOTE LogoDonor Age Distribution of 2020 Contributions by Individuals: Trump vs. Sanders2020: Where Donation $$ EmergeUnique Individual Donors contributing to the 2020 Presidential CandidatesContributions: Trump vs. Biden 2020Changes to polling placesElectoral College Unit Shuffle
As votes come in, what would it take for the trailing candidate to win?
Electoral College Decision Tree2004 - 2016 Presidential Margin of Victory per County2020 State Probabilities by Election Model - Shaded Table2020 Presidential Election ForecastsElection Maps: 2016Working With Election Data: EAVS3a. Historical participation in early voting vs. Election Day votingNC Election MapSouth Carolina Early and Absentee Voting DataRace Bar Chart utilitiesNC Congressional DistrictsGrid cartogramsPaths to the White House (Inferred)US Elections 2018How well does population density predict U.S. voting outcomes?
US Election Convention MapElection Data Tutorial2020 Presidential Election Forecasts2016 U.S. presidential election (PEPSI Remix)2016 U.S. presidential election
USPS collection box changesU.S. Geographic DataU.S. County Visualization IdeasRejected Mail Ballots in North Carolina
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
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
// currentShare ∈ [0,1] fraction of votes so far cast for Party A
// votesCounted ∈ [0,1] fraction of total votes that have been counted
// shareNeeded ∈ [0,1] fraction of remaining votes needed for Party A to win
shareNeeded = (currentShare, votesCounted) =>
votesCounted === 1
? currentShare > .5
? -Infinity
: currentShare < .5
? Infinity
: NaN
: (currentShare * votesCounted - winThreshold) / (votesCounted - 1)
Insert cell
winThreshold = 0.5
Insert cell
hue = Math.floor(Math.random() * 360)
Insert cell
color1 = `hsl(${hue}, 50%, 50%)`
Insert cell
color2 = `hsl(${(hue + 180) % 360}, 50%, 50%)`
Insert cell
party = (letter = "A") =>
html`<span style="color: ${
letter === "A" ? color1 : color2
}; font: 14px sans-serif; font-weight: bold;">PARTY ${letter}</span>`
Insert cell
Insert cell
// Simple table of results at top
import { table, pct } with { color1, color2, chart } from "8ed8fae68b806147"
Insert cell
// 2D draggable phase space
import { viewof chart } with { color1, color2 } from "7dde4d42ff1f3a76"
Insert cell
// Small multiples of phase space
import { minis } with { color1, color2, chart } from "6e7b258359052066"
Insert cell
// Small multiples of phase space, highlighting share needed to win and outcome
import { outcomes } with { color1, color2, chart, pov } from "fb29011ee10bdeee"
Insert cell
// Dual phase space introducing contours with cone of possible moves
import { viewof dualChart } with { color1, color2 } from "9ecea15c8d9a9f1f"
Insert cell
// Contour plot with semi-real historical paths drawn atop
import { chart as contours, outcome, bilateralLegend } with {
color1,
color2,
shareNeeded as value,
county
} from "1549aa94f8c6b9d1"
Insert cell
// Final small multiples with each county’s cone
import { viewof county } with { color1, color2 } from "16ab9fc154f01cc1"
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