8000 Implement extend color bar for contourf · Pull Request #8806 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Implement extend color bar for contourf #8806

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

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update ticker.py
  • Loading branch information
Tuan authored Jun 26, 2017
commit 105abccbe8cfb6cba57a3b95a471d7b53efa21a9
2 changes: 1 addition & 1 deletion lib/matplotlib/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2208,7 +2208,7 @@ def _increase_upper_bound(self, levels, upper_bound):
levels.append(upper_bound * self._base)

def _get_lower_extend_layer_value(self):
return np.nextafter(0,1)
return np.nextafter(0, 1)


class SymmetricalLogLocator(Locator):
Expand Down
0