Plot.plot({
color: {
type: "quantile",
n: 8,
scheme: "Blues",
label: "Sprayable Hours in April/May",
legend: true,
format: ".2f"
},
projection: "albers-usa",
width,
marks: [
Plot.geo(nation),
Plot.geo(states, { strokeOpacity: 0.9 }),
Plot.geo(counties, {fill: d => good_filtered.get(d.id),title: d=> [d.properties.name,d.properties.state,good_filtered.get(d.id)]}),
Plot.geo(counties, { strokeOpacity: 0.1}),
]
})