Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

MEP 12: Gallery cleanup and reorganization#1623

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Closed
tonysyu wants to merge35 commits intomatplotlib:masterfromtonysyu:gallery-cleanup
Closed
Show file tree
Hide file tree
Changes from1 commit
Commits
Show all changes
35 commits
Select commitHold shift + click to select a range
31c4b57
STY: Refactor string formatting/templating
tonysyuDec 18, 2012
a16e793
Clean-up and move scatter_demo
tonysyuDec 18, 2012
a22ed53
Cleanup and move fill_demo
tonysyuDec 18, 2012
48caac8
Cleanup and move pie_demo
tonysyuDec 18, 2012
7f1887b
Cleanup and move errorbar_demo.
tonysyuDec 18, 2012
b10a877
Cleanup and move fill_demo2
tonysyuDec 18, 2012
6995e54
Cleanup and move histogram_demo
tonysyuDec 18, 2012
48fab58
Cleanup and move hinton_demo
tonysyuDec 18, 2012
e9bfbb9
Cleanup and move image_demo3.py
tonysyuDec 18, 2012
87aba29
DOC: Minor rewording
tonysyuDec 21, 2012
c0f42d7
Fix doc build to search in new example sections.
tonysyuDec 21, 2012
e244d9b
Cleanup and move subplot_demo
tonysyuDec 21, 2012
002ca7a
Update example section titles
tonysyuDec 21, 2012
402b301
Cleanup and move unicode_demo
tonysyuDec 21, 2012
529d9f7
Consolidate histogram examples
tonysyuDec 22, 2012
6acc43a
Cleanup and move vertical_ticklabels demo
tonysyuDec 22, 2012
7f7c013
Cleanup and move clippath_demo
tonysyuDec 23, 2012
ab417eb
Rename imshow_demo to image_demo
tonysyuDec 23, 2012
5a77ad8
Cleanup and move polar_bar demo
tonysyuDec 23, 2012
e4dce4e
Cleanup and move polar scatter demo
tonysyuDec 23, 2012
cc18501
Cleanup and move text themes demo
tonysyuDec 23, 2012
d02d560
Cleanup and move path_patch demo
tonysyuDec 23, 2012
ec8a487
Clean up and move integral demo
tonysyuDec 23, 2012
acc69cc
Extract spines_demo_bounds from spine_placement_demo
tonysyuDec 23, 2012
800deb4
Extract spines_demo from spine_placement_demo
tonysyuDec 23, 2012
edce62b
Cleanup integral_demo
tonysyuDec 23, 2012
405cbc5
Cleanup and move dash_control demo
tonysyuDec 23, 2012
30a85ba
Clean up and move color_cycle demo
tonysyuDec 24, 2012
7175e06
Tweak subplot layout to prevent label clipping
tonysyuDec 24, 2012
5020952
Add colormap references based on show_colormaps
tonysyuDec 24, 2012
fae23d6
Clean up and move artist demo
tonysyuDec 24, 2012
abfdea4
Clean up and move streamplot demos
tonysyuDec 24, 2012
8f4be5b
Combine colormap reference examples
tonysyuDec 24, 2012
917c329
Clean up and move barh_demo
tonysyuDec 24, 2012
1e579d8
STY: Combine declarations of example directories
tonysyuDec 30, 2012
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
PrevPrevious commit
NextNext commit
Clean-up and move scatter_demo
  • Loading branch information
@tonysyu
tonysyu committedDec 18, 2012
commita16e7934584cd9c7b5c686bdb6bad58729d47367
10 changes: 0 additions & 10 deletionsexamples/pylab_examples/scatter_demo.py
View file
Open in desktop

This file was deleted.

14 changes: 14 additions & 0 deletionsexamples/shapes_and_collections/scatter_demo.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
"""
Simple demo of a scatter plot.
"""
import numpy as np
import matplotlib.pyplot as plt


N = 50
x = np.random.rand(N)
y = np.random.rand(N)
area = np.pi * (15 * np.random.rand(N))**2 # 0 to 15 point radiuses

plt.scatter(x, y, s=area, alpha=0.5)
plt.show()

[8]ページ先頭

©2009-2025 Movatter.jp