addTooltips(
Plot.plot({
marks: [
Plot.dot(data, {
x: (d) => (d.Height == "NA" ? -1 : +d.Height),
y: (d) => (d.Weight == "NA" ? -1 : +d.Weight),
r: 3,
fill: "black",
fillOpacity: 0.1,
title: (d) => d.Name + " " + d.Height + " " + d.Weight
})
],
width: width
})
)