Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
ENH: errorbar color cycle clean up #5593
Conversation
tacaswell
added the
needs_review
label
Dec 1, 2015
tacaswell
changed the title from
WIP to WIP: errorbar color cycle clean up
Dec 1, 2015
tacaswell
added this to the
unassigned
milestone
Dec 1, 2015
|
Great -- this definitely addresses part of #5584 in a better way. Should we also remove the use of |
mdboom
referenced
this pull request
Jan 14, 2016
Closed
Bar and box plots use the 'default' matplotlib colormap, even if the style is changed #5851
tacaswell
added needs_revision and removed needs_review
labels
May 13, 2016
tacaswell
modified the milestone: 2.1 (next point release), unassigned
May 13, 2016
tacaswell
added some commits
May 13, 2016
|
The decision to consult the prop-cycle still needs to be fixed. attn @WeatherGod |
|
and is this a 2.0 or 2.1 tagged issue? |
tacaswell
modified the milestone: 2.0 (style change major release), 2.1 (next point release)
May 13, 2016
tacaswell
closed this
May 23, 2016
tacaswell
reopened this
May 23, 2016
tacaswell
added needs_review and removed needs_revision
labels
May 23, 2016
jenshnielsen
self-assigned this
May 23, 2016
tacaswell
added the
default changes
label
May 23, 2016
jenshnielsen
and 1 other
commented on an outdated diff
May 25, 2016
lib/matplotlib/axes/_axes.py
| - if not iterable(uplims): | ||
| - uplims = np.array([uplims] * len(x), bool) | ||
| - else: | ||
| - uplims = np.asarray(uplims, bool) | ||
| + if plot_line: | ||
| + l0 = mlines.Line2D(x, y, **plot_line_style) | ||
| + self.add_line(l0) |
jenshnielsen
Owner
|
jenshnielsen
commented on the diff
May 25, 2016
lib/matplotlib/axes/_axes.py
| - # arrays fine here, they are booleans and hence not units | ||
| - if not iterable(lolims): | ||
| - lolims = np.asarray([lolims] * len(x), bool) | ||
| - else: | ||
| - lolims = np.asarray(lolims, bool) | ||
| + # For backwards-compat, allow explicit setting of | ||
| + # 'markeredgewidth' to over-ride capthick. | ||
| + for key in ('markeredgewidth', 'transform', 'alpha', |
jenshnielsen
Owner
|
|
|
tacaswell
changed the title from
WIP: errorbar color cycle clean up to ENH: errorbar color cycle clean up
May 25, 2016
|
This should be ready to go. |
jenshnielsen
merged commit 597d2ef
into matplotlib:master
May 30, 2016
jenshnielsen
added a commit
to jenshnielsen/matplotlib
that referenced
this pull request
May 30, 2016
|
|
jenshnielsen + jenshnielsen |
acfab37
|
|
Back port to 2.x as acfab37 |
jenshnielsen
removed the
needs_review
label
May 30, 2016
tacaswell
deleted the
tacaswell:fix_errorbar_cycleing branch
May 30, 2016
This was referenced Sep 11, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tacaswell commentedDec 1, 2015
@mdboom This is what I was talking about on the phone call.