map = Plot.plot({
width: 960,
height: 600,
marginLeft: 0,
marginRight: 0,
projection: "albers",
color: {
legend: true,
label: "Denomination"
},
facet: { data: combined, x: "group"},
marks: [
Plot.geo(nation, { clip: "frame" }),
Plot.geo(statemesh, {strokeOpacity: 0.2, clip: "frame"}),
Plot.dot(combined, {x: "lon", y: "lat", stroke: "group", r: "churches"})
]
})