Published
Edited
Nov 21, 2020
Insert cell
md`# US Presidential Election Results (1976 - 2020)`

Insert cell
dsv = require("d3-dsv@1")
Insert cell
import {vl} from '@vega/vega-lite-api'
Insert cell
data = dsv.csvParse(await FileAttachment('1976-2016-president.csv').text(), dsv.autoType)
Insert cell
// Add the results for 2020 (source: The Associated Press)
result = data.filter(d => d.party === 'democrat' || d.party === 'republican' ).concat([
{
year: 2020, office: "US President", candidate: "Biden, Joe", party: "democrat",
writein: "FALSE", notes: "NA",
candidatevotes: 79722437
},
{
year: 2020, office: "US President", candidate: "Trump, Donald J.", party: "republican",
writein: "FALSE", notes: "NA",
candidatevotes: 73732272
}
])
Insert cell
md`## Total Votes by Election (Democrat + Republican)`
Insert cell
vl.markBar()
.data(result)
.padding(10)
.width(500)
.height(300)
.encode({
x: {field: 'candidatevotes', type: 'quantitative', aggregate: 'sum'},
y: {field: 'year', type: 'nominal'},
tooltip: {field: "candidatevotes", aggregate: "sum"},
color: {value: "orange"}
})
.render()
Insert cell
md`## Votes for Democrat and Republican Candidates`
Insert cell
vl.markBar()
.data(result)
.padding(10)
.encode({
column: {
field: "year", type: "ordinal", spacing: 10
},
y: {
aggregate: "sum", field: "candidatevotes",
axis: {"grid": false}
},
x: {
field: "party", axis: {title: ""}
},
color: {
field: "party",
scale: {range: ["#0652DD", "#ff0803"]}
},
tooltip: [
{field: "candidate", type: "nominal"},
{field: "candidatevotes", aggregate: "sum", title: "votes"}
],

})
.config({
"view": {"stroke": "transparent"},
"axis": {"domainWidth": 1}
})
.render()
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