Skip to content

DOC: Change colormaps for examples (showcase different types, discourage 'jet') #921

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

Merged
merged 19 commits into from
Jun 24, 2012
Merged
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
better sequential map for showing contours
  • Loading branch information
endolith committed Jun 5, 2012
commit f3ba478bedf7a3b1d6f9500be50b7cee0a36c44c
2 changes: 1 addition & 1 deletion examples/pylab_examples/contourf_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

# Automatic selection of levels works; setting the
# log locator tells contourf to use a log scale:
cs = P.contourf(X, Y, z, locator=ticker.LogLocator())
cs = P.contourf(X, Y, z, locator=ticker.LogLocator(), cmap = cm.PuBu_r)

# Alternatively, you can manually set the levels
# and the norm:
Expand Down