8000 Mep12 step demo.py by ericmjl · Pull Request #4655 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Mep12 step demo.py #4655

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 2 commits into from
Jul 12, 2015
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
Next Next commit
MEP12 on subplots_adjust.py
Placed under wrong branch, but it’s okay.
  • Loading branch information
ericmjl committed Jul 11, 2015
commit eef24e51561cb69c4087364ef710b5e1379807f5
20 changes: 10 additions & 10 deletions examples/pylab_examples/subplots_adjust.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from pylab import *
import matplotlib.pyplot as plt
import numpy as np

plt.subplot(211)
plt.imshow(np.random.random((100, 100)), cmap=plt.cm.BuPu_r)
plt.subplot(212)
plt.imshow(np.random.random((100, 100)), cmap=plt.cm.BuPu_r)

subplot(211)
imshow(rand(100, 100), cmap=cm.BuPu_r)
subplot(212)
imshow(rand(100, 100), cmap=cm.BuPu_r)

subplots_adjust(bottom=0.1, right=0.8, top=0.9)
cax = axes([0.85, 0.1, 0.075, 0.8])
colorbar(cax=cax)
show()
plt.subplots_adjust(bottom=0.1, right=0.8, top=0.9)
cax = plt.axes([0.85, 0.1, 0.075, 0.8])
plt.colorbar(cax=cax)
plt.show()
0