Open
Description
if we added, say:
x = valueof(data, x);
y = valueof(data, y);
then a boxplot of random numbers would be correct. Currently this shows inconsistencies between the different submarks:
export async function boxplotRandom() {
return Plot.boxX({length: 20}, {x: d3.randomLcg(42), tip: true}).plot({
style: "overflow: visible;"
});
}
However it's possible that we would be better off using creator from the pointer-highlight branch to create the box plot as a single mark instead?