Plot.plot({
inset: 8,
grid: true,
marks: [
Plot.dot(
d3.filter(race, d => d.sex == sex),
{x: "age", y: "timeMinutes", fill: "black", fillOpacity: opacity}
)
],
x: {domain: [minAge, maxAge]},
y: {label: "time (minutes)", domain: [minTime, maxTime]},
})