-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Adding elinestyle property to errorbar #29879
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
Changes from 14 commits
5019e57
cf79005
dd2be27
3f139f2
2705eab
7c68dd0
596bcde
73137f6
0059043
2bdf70b
e412775
a02930f
26a73b4
9d0dece
9bb00ab
896678f
2e49747
44638f3
c503592
0e36c50
430ef24
ff0370a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3041,7 +3041,7 @@ def bar_label( | |
*, | ||
fmt: str | Callable[[float], str] = "%g", | ||
label_type: Literal["center", "edge"] = "edge", | ||
padding: float | ArrayLike = 0, | ||
padding: float = 0, | ||
**kwargs, | ||
) -> list[Annotation]: | ||
return gca().bar_label( | ||
|
@@ -4117,9 +4117,6 @@ def streamplot( | |
integration_direction="both", | ||
broken_streamlines=True, | ||
*, | ||
integration_max_step_scale=1.0, | ||
integration_max_error_scale=1.0, | ||
num_arrows=1, | ||
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. did boilerplate.py do these changes? This should not be modified. 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. I believe so. I have not added anything to this file. 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. I ran boilerplate.py in another branch without any of my changes. These changes appear as a result. 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. Ok, I've opened a separate issue on this. For this PR, please just revert the unwanted modifications. 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. Did you run it outside an environment with the current version installed? The script imports It seems like that's the case because 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. I was working on this branch using the conda environment mpl-dev in codespace 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. Are you definitely using Matplotlib installed from source? 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. Hi. I will verify. I activated the condo envy and started working. 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. Possibly you missed the install step then You will probably also need to set this before the install 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. "You will probably also need to set this before the install Thank you. I was getting an error in codespace while running pytest. This seems to have fixed it, but I don't recall seeing it in the documentation |
||
data=None, | ||
): | ||
__ret = gca().streamplot( | ||
|
@@ -4141,9 +4138,6 @@ def streamplot( | |
maxlength=maxlength, | ||
integration_direction=integration_direction, | ||
broken_streamlines=broken_streamlines, | ||
integration_max_step_scale=integration_max_step_scale, | ||
integration_max_error_scale=integration_max_error_scale, | ||
num_arrows=num_arrows, | ||
**({"data": data} if data is not None else {}), | ||
) | ||
sci(__ret.lines) | ||
|
@@ -4291,8 +4285,6 @@ def violinplot( | |
| Callable[[GaussianKDE], float] | ||
| None = None, | ||
side: Literal["both", "low", "high"] = "both", | ||
facecolor: Sequence[ColorType] | ColorType | None = None, | ||
linecolor: Sequence[ColorType] | ColorType | None = None, | ||
*, | ||
data=None, | ||
) -> dict[str, Collection]: | ||
|
@@ -4309,8 +4301,6 @@ def violinplot( | |
points=points, | ||
bw_method=bw_method, | ||
side=side, | ||
facecolor=facecolor, | ||
linecolor=linecolor, | ||
**({"data": data} if data is not None else {}), | ||
) | ||
|
||
|
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.
This looks like an accidental unrelated change. Let's not include this