-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reinitialize #823
Merged
Merged
reinitialize #823
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group by z inline hexbin binWidth is the distance between two centers (rebased on mbostock/reinitialize)
# Conflicts: # package.json
Wondering if we should not merge new channels with the old channels when doing composition? (DONE) |
This comment was marked as resolved.
This comment was marked as resolved.
(added as an example, but we could promote it to a transform)
Closed
(using the same remap intializer as in the darkerDodge plot)
Another example of something we can only do with reinitializer: We need to be able to read in the x and y scales, the compute all the numbers on the cross-domain x⨂y, then create the color scale (and associated legend). |
mbostock
pushed a commit
that referenced
this pull request
May 4, 2022
* document layouts (as "scale-aware transforms") * document binWidth * document the initialize option after 42ac4f0 * sort hex bins by radius (descending) group by z inline hexbin binWidth is the distance between two centers (rebased on mbostock/reinitialize) * dodge rebased on mbostock/reinitialize * compose intializers * use composeInitialize to make dodge composable * add new channels as you compose initializers * darker transform, to demonstrate composition with dodgeY (added as an example, but we could promote it to a transform) * a more generic "remap" * jiggle layout (using the same remap intializer as in the darkerDodge plot)
mbostock
pushed a commit
that referenced
this pull request
May 4, 2022
* document layouts (as "scale-aware transforms") * document binWidth * document the initialize option after 42ac4f0 * sort hex bins by radius (descending) group by z inline hexbin binWidth is the distance between two centers (rebased on mbostock/reinitialize) * dodge rebased on mbostock/reinitialize * compose intializers * use composeInitialize to make dodge composable * add new channels as you compose initializers * darker transform, to demonstrate composition with dodgeY (added as an example, but we could promote it to a transform) * a more generic "remap" * jiggle layout (using the same remap intializer as in the darkerDodge plot)
This was referenced May 7, 2022
Closed
Closed
mbostock
added a commit
that referenced
this pull request
May 26, 2022
scale hex radius so that when hexagons touch, circles also touch without overlapping (#803) (supersedes #795) simpler hexagon hexgrid fix for unscaled channels reorder hexbin fix #806; handle missing hint infer channel scales pass data to initializer offset hexagonal grid slightly simpler without destructuring reinitialize (#823) * document layouts (as "scale-aware transforms") * document binWidth * document the initialize option after 42ac4f0 * sort hex bins by radius (descending) group by z inline hexbin binWidth is the distance between two centers (rebased on mbostock/reinitialize) * dodge rebased on mbostock/reinitialize * compose intializers * use composeInitialize to make dodge composable * add new channels as you compose initializers * darker transform, to demonstrate composition with dodgeY (added as an example, but we could promote it to a transform) * a more generic "remap" * jiggle layout (using the same remap intializer as in the darkerDodge plot) composeInitialize
mbostock
added a commit
that referenced
this pull request
May 28, 2022
* mark initializers scale hex radius so that when hexagons touch, circles also touch without overlapping (#803) (supersedes #795) simpler hexagon hexgrid fix for unscaled channels reorder hexbin fix #806; handle missing hint infer channel scales pass data to initializer offset hexagonal grid slightly simpler without destructuring reinitialize (#823) * document layouts (as "scale-aware transforms") * document binWidth * document the initialize option after 42ac4f0 * sort hex bins by radius (descending) group by z inline hexbin binWidth is the distance between two centers (rebased on mbostock/reinitialize) * dodge rebased on mbostock/reinitialize * compose intializers * use composeInitialize to make dodge composable * add new channels as you compose initializers * darker transform, to demonstrate composition with dodgeY (added as an example, but we could promote it to a transform) * a more generic "remap" * jiggle layout (using the same remap intializer as in the darkerDodge plot) composeInitialize * update dependencies * Update README * Update README * tweak error message * Fix Plot.hexbin default reducer, and simplify (#884) * sort tests * revert inlined hexbin implementation * simpler z * simpler scale application * re-inline d3-hexbin * use descendingDefined to sort * coerce X and Y to numbers * populate radius hint * fix hexbin z; implicit group on symbol * update tests * expose initialize; rewrite remap * tweak tests * tweak tests * tweak tests * tweak tests * tweak tests * tweak tests * tweak tests * tweak tests * fix scale association, numeric coercion * fix numeric coercion * remove comment * initializers * Update README * preserve this with composed transforms * no default sort for hexbin * channel sorting; default sort by descending r * don’t consume null sort * don’t consume null sort, strictly * Update README Co-authored-by: Philippe Rivière <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
merges on #801:
This is mainly in order to test the composition of channel transforms (wanted to have both hexbin and dodge in the same branch). My goal is also to have a base on which to build new channel transforms.