-
Notifications
You must be signed in to change notification settings - Fork 48
Viz 01: Unify cluster palette and add discrete palette #1716
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
Open
Doresic
wants to merge
5
commits into
develop
Choose a base branch
from
viz-01-cluster-palette
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
8816516
Unify cluster palette and add discrete palette
Doresic 2cacf66
Merge branch 'develop' into viz-01-cluster-palette
Doresic 835b95e
small style cleanup + fix test failure
Doresic e17583a
small edits
Doresic 450b571
Merge branch 'develop' into viz-01-cluster-palette
Doresic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| """ | ||
| Visual style for ``pypesto.visualize``. | ||
|
|
||
| Default constants, the ``style_kwargs`` registry, and small cross-module | ||
| helpers. | ||
|
|
||
| Users override any default per call via ``style_kwargs``, validated against | ||
| :data:`_DEFAULTS`:: | ||
|
|
||
| waterfall(result, style_kwargs={"mle_color": "tab:purple"}) | ||
| """ | ||
|
|
||
| from __future__ import annotations | ||
|
|
||
| import warnings | ||
|
|
||
| # Colors — semantic roles | ||
| # ----------------------- | ||
| MLE_COLOR = "#d62728" # tab:red — best cluster + MLE markers | ||
| OUTLIER_COLOR = "#b3b3b3" # mid-grey — singleton / outlier starts | ||
|
|
||
| # Colormaps | ||
| # --------- | ||
| CMAP_DISCRETE = "tab10" # qualitative: cluster + per-variable colours | ||
|
|
||
| # Style registry | ||
| # -------------- | ||
|
|
||
| _DEFAULTS: dict[str, object] = { | ||
| "mle_color": MLE_COLOR, | ||
| "outlier_color": OUTLIER_COLOR, | ||
| "cmap_discrete": CMAP_DISCRETE, | ||
| } | ||
|
|
||
|
|
||
| def resolve_style(style_kwargs: dict | None = None) -> dict: | ||
| """Return the effective style dict, merging defaults with caller overrides. | ||
|
|
||
| Parameters | ||
| ---------- | ||
| style_kwargs: | ||
| User-supplied overrides. Unknown keys raise a ``UserWarning`` so | ||
| typos surface immediately. | ||
|
|
||
| Returns | ||
| ------- | ||
| dict | ||
| Merged style dict with all keys from :data:`_DEFAULTS`, with | ||
| caller overrides applied on top. | ||
| """ | ||
| style = dict(_DEFAULTS) | ||
| if style_kwargs: | ||
| unknown = set(style_kwargs) - set(_DEFAULTS) | ||
| if unknown: | ||
| warnings.warn( | ||
| f"Unknown style_kwargs keys: {sorted(unknown)}. " | ||
| f"Valid keys: {sorted(_DEFAULTS)}.", | ||
| UserWarning, | ||
| stacklevel=3, | ||
| ) | ||
| style.update(style_kwargs) | ||
| return style | ||
|
Doresic marked this conversation as resolved.
|
||
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.