Philippe Rivière
Philippe Rivière
It would be useful here for example https://observablehq.com/@fil/ternary-plot#comment-5ba7a42661249bb9
related #1832 #2298
related: #1832
This might be needing an algorithm similar to Dorling cartograms, for example with a force simulation. Among the notable differences/or features that we might want to support: * labels are...
Or use a voronoi initializer transform: https://observablehq.com/@fil/plot-voronoi-labels
(I don't have access to https://observablehq.com/d/0e0c0dcb66d6714e) Doing it on the scale would just be like specifying .unknown("Others")? Could be interesting for individual marks (like dot), but we need it as...
My own use case for nominal "Others" is detailed in this [“modalities” notebook](https://observablehq.com/d/b75140d71fb9342a).
I've made some progress on this idea; seems to work with facets https://observablehq.com/d/0bca2cad63c75fe1
> something you specify as a scale transform rather than a mark transform I've tried a few things to achieve this, by passing the domain to the scale transform in...
This solution works on X, where others+k are an option of the group reducer. ```diff --- a/src/transforms/group.js +++ b/src/transforms/group.js @@ -67,7 +67,7 @@ function groupn( // The z, fill, and...