8000 DOC: Change colormaps for examples (showcase different types, discourage 'jet') by endolith · Pull Request #921 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

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
use HSV for cyclic data
  • Loading branch information
endolith committed Jun 3, 2012
commit 5564284cdbdf5606089122c0f27c4741e57080e6
3 changes: 1 addition & 2 deletions examples/pylab_examples/polar_scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
area = 200*r**2*rand(N)
colors = theta
ax = subplot(111, polar=True)
c = scatter(theta, r, c=colors, s=area)
c = scatter(theta, r, c=colors, s=area, cmap=cm.hsv)
c.set_alpha(0.75)


show()
0