Plot.plot({
grid: true,
inset: 10,
marks: [
Plot.dot(filtered, {
x: combo_stat_1,
y: combo_stat_2,
fill: "gold",
stroke: "gold"
}),
Plot.tip(filtered, Plot.pointer({
x: combo_stat_1,
y: combo_stat_2,
channels: {driver: "driver_class", vehicle: "vehicle", speed: "speed", acceleration: "acceleration", weight: "weight", handling: "handling"},
fill: "#0c2461",
stroke: "gold",
<!-- lineWidth: 20, -->
textOverflow: null
}))
]
})