-
Notifications
You must be signed in to change notification settings - Fork 13
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
Allow control of marker size (and other aspects of plt.scatter) #78
Merged
Merged
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
198182f
allow control of marker size
zhang-ivy 2764be6
allow data_label_filter arg
zhang-ivy a40e549
Revert "allow data_label_filter arg"
zhang-ivy 1a84fed
fix merge conflicts
zhang-ivy 79576c0
remove marker size arg, replace with scatter_kwargs
zhang-ivy 498863e
add default args
zhang-ivy 840ce0f
add default args to docs
zhang-ivy 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 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 |
---|---|---|
|
@@ -35,6 +35,7 @@ def _master_plot( | |
bootstrap_x_uncertainty: bool = False, | ||
bootstrap_y_uncertainty: bool = False, | ||
statistic_type: str = "mle", | ||
scatter_kwargs: dict = {}, | ||
): | ||
"""Handles the aesthetics of the plots in one place. | ||
|
||
|
@@ -97,6 +98,8 @@ def _master_plot( | |
statistic_type : str, default 'mle' | ||
the type of statistic to use, either 'mle' (i.e. sample statistic) | ||
or 'mean' (i.e. bootstrapped mean statistic) | ||
scatter_kwargs : dict, default {} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you update the default value here too please? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, sorry about that. Done |
||
arguments to control plt.scatter() | ||
|
||
Returns | ||
------- | ||
|
@@ -166,7 +169,7 @@ def _master_plot( | |
elinewidth=2.0, | ||
zorder=1, | ||
) | ||
plt.scatter(x, y, color=color, s=10, marker="o", zorder=2) | ||
plt.scatter(x, y, color=color, zorder=2, **scatter_kwargs) | ||
|
||
# Label points | ||
texts = [] | ||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be worth keeping s=10 and marker='o' as the defaults here? That way you have the same behaviour as before just with a little bit extra control?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!