You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The map transform groups by y and not by intervaled y. If you replace y: (d) => ((d.height * 10) | 0) / 10 below by y: "height", the box plot shows too many outliers (the outliers are using a map transform).
The map transform groups by y and not by intervaled y. If you replace
y: (d) => ((d.height * 10) | 0) / 10
below byy: "height"
, the box plot shows too many outliers (the outliers are using a map transform).Here's a test with the correct outliers:
now, remove the z specified above, and you get this incorrect chart, where you have "outliers" inside the q1-q3 band:
(excerpted from #1839; note that I've updated the code slightly to add y: {reverse: true}, for when we create the actual unit test.)
The text was updated successfully, but these errors were encountered: