Public
Edited
Jul 19, 2022
6 stars
Insert cell
Insert cell
Insert cell
import {laserStrikesCleaned as laserStrikes} from "@observablehq/excel-add-columns"
Insert cell
Insert cell
Plot.plot({
marks: [
Plot.barY(laserStrikes, Plot.groupX({y: "count"}, {x: "State", sort: {x: "y", reverse: true, limit: 10},
fill: "steelblue"})),
Plot.ruleX([0])
],
width: 800
})
Insert cell
Insert cell
Plot.plot({
marks: [
Plot.barY(laserStrikes, Plot.groupX({y: "count"}, {x: "State", sort: {x: "y", reverse: true, limit: 10},
fill: "steelblue"})),
Plot.ruleX([0])
],
facet: {
data: laserStrikes,
y: "year"
},
width: 800
})
Insert cell
Insert cell
Plot.plot({
marks: [
Plot.barY(laserStrikes, Plot.groupX({y: "count"}, {x: "Airport", sort: {x: "y", reverse: true, limit: 10},
fill: "steelblue"})),
Plot.ruleX([0])
],
width: 800
})
Insert cell
Insert cell
strikesByAirport = d3.groups(laserStrikes, d => d.Airport)
.map(d => {
return {
airport: d[0],
strikes: d[1].length,
traffic: d[0] in usAirports ? usAirports[d[0]].Enplanements : 0,
name: d[0] in usAirports ? usAirports[d[0]].Airport : ''
}
}).filter(d => d.traffic > 0)
Insert cell
Insert cell
Plot.plot({
marks: [
Plot.dot(strikesByAirport, {x: "traffic", y: "strikes", title: d => `${d.name} (${d.airport})`,
r: 5, fill: "steelblue"})
]
})
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
usAirports = {
const replaceAllCommas = /,/g;
let list = (await FileAttachment("us-airports.csv").csv()).map(d => {
return {
...d,
Enplanements: +(d.Enplanements.replace(replaceAllCommas, ''))
};
});
let airports = {};
for (let row of list) {
if (row.FAA) {
airports[row.FAA] = row;
}
}

return airports;
}
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