Plot.plot({
projection: "albers-usa",
width,
marks: [
Plot.geo(nation, { strokeOpacity: 0.25 }),
Plot.geo(states, { strokeOpacity: 0.25 }),
Plot.dot(
tornados.filter((d) => {
return d.yr === range;
}),
{
x: "slon",
y: "slat",
fill: "#33658a",
r: "mag",
stroke: "#dee2e6"
}
)
]
})