plot
plot copied to clipboard
a space is interpreted as a number
Plot.plot({ marks: [Plot.barX([{ x: 200, y: " " }], { x: "x", y: "y" })] }) wrongly recognizes the space as a number, then warns about y being numbers.
It’s because it’s coercible to a number: +" " equals 0.