Skip to content

MEP12: Example clean-up for reference #2474

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 21 commits into from
Jan 14, 2014
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
Remove unnecessary calls to show
  • Loading branch information
tonysyu committed Sep 29, 2013
commit 83dd0ea33d15e8011fb3506fd328771707171adb
6 changes: 0 additions & 6 deletions examples/pylab_examples/histogram_demo_extended.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,11 @@


plt.figure()

n, bins, patches = plt.hist(x, 10, normed=1, histtype='bar', stacked=True)

plt.show()

plt.figure()

n, bins, patches = plt.hist(x, 10, histtype='step', stacked=True, fill=True)

plt.show()

# Make a multiple-histogram of data-sets with different length.
x0 = mu + sigma*np.random.randn(10000)
x1 = mu + sigma*np.random.randn(7000)
Expand Down