Plot.plot({
projection: "albers-usa",
color: {
type: "sequential",
scheme: "OrRd",
legend: true
},
title: "Free Black Population in 1850",
marks: [
Plot.geo(states, {
fill: (d) => freeblackpop1850Lookup.get(d.properties.name),
stroke: "lightgray"
}),
Plot.geo(nation, { stroke: "black" })
]
})