Plot.plot({
projection: "albers-usa",
marks: [
Plot.geo(states,{stroke: "#ccc" }),
Plot.dot(aggregatedData,
Plot.hexbin(
{ r:"count",fill: "count"},
{ x: "Longitude", y: "Latitude", tip:true}
))
],
height: 500,
width: 800,
color: {
legend: true,
label: "Number of Aircraft Accidents:",
scheme: "cool"
}
})