Plot.auto(olympians, {x: "weight", y: "height", color: "count"}).plot()Plot.auto(olympians, {x: "weight", y: "sex", color: "count"}).plot()This auto mark is equivalent to a rect & bin combination:
Plot.rect(olympians, Plot.bin({fill: "count"}, {x: "weight", y: "height"})).plot()Plot.rect(olympians, Plot.binX({fill: "count"}, {x: "weight", y: "sex"})).plot()const olympians = FileAttachment("data/olympians.csv").csv({typed: true}).then(display);