Published
Edited
Oct 23, 2020
3 forks
47 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 ShuffleAs 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: EAVS
3a. Historical participation in early voting vs. Election Day voting
NC 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
filteredState = _.find(statesData, d => d.id === filter)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
_.sortBy(renderData.render, 'text')
Insert cell
Insert cell
colors = new Object({
gray: '#AEA2B1',
black: '#47535C',
highlight: '#FFED6B',
})
Insert cell
colorScale = chroma.scale(["#ff8464", "#41c6fa"].map(color => chroma(color).saturate(2))).mode('lch')
Insert cell
linearGradient = (selection, id, colors, x1, x2, y1, y2) => {
selection.append('defs')
.append('linearGradient')
.attr('id', id)
.attr('gradientUnits', 'userSpaceOnUse')
.attr('x1', x1).attr('x2', x2)
.attr('y1', y1).attr('y2', y2)
.selectAll('stop')
.data(colors).join('stop')
.attr('offset', (d, i) => `${Math.floor(i * 100 / (colors.length - 1))}%`)
.attr('stop-color', d => d.color)
.attr('stop-opacity', d => d.opacity > -1 ? d.opacity : 1)
}
Insert cell
Insert cell
d3 = require('d3')
Insert cell
_ = require('lodash')
Insert cell
chroma = require('chroma-js')
Insert cell
Insert cell
Insert cell
countiesData = data.counties[year]
Insert cell
statesData = data.states[year]
Insert cell
import {scrollSVG} from '@sxywu/utility-functions'
Insert cell
import {form} from "@mbostock/form-input"
Insert cell
import {rangeSlider} from '@mootari/range-slider'
Insert cell
import {inputsGroup} from '@bumbeishvili/input-groups'
Insert cell
years = [2016, 2018]
Insert cell
style = html`
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&family=Work+Sans:wght@400;500;700;900&display=swap" rel="stylesheet">

<style>
body, select, option {
font-family: 'Work Sans', sans-serif;
line-height: 1.5;
}

h1, h2 {
font-family: 'Playfair Display', serif;
}

select {
padding: 2px 5px;
font-size: 16px;
}

label {
display: inline-block;
min-width: 300px;
}

.highlight {
display: inline-block;
background-color: ${colors.highlight};
padding: 0px 10px;
margin-top: 5px;
border-radius: 5px;
}
</style>
`
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