Plot.plot({
projection: "albers-usa",
color: {
type: "sequential",
scheme: "Reds",
legend: true
},
title: "Illiteracy per capita 1930",
marks: [
Plot.geo(states, {
fill: (d) => normalliteracyLookup.get(d.properties.name),
stroke: "black"
}),
Plot.geo(nation, { stroke: "black" })
]
})