Skip to content

Commit e88d4cd

Browse files
committed
rebuild docs
1 parent 6e5c9d0 commit e88d4cd

File tree

5,190 files changed

+17242
-10518
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,190 files changed

+17242
-10518
lines changed

2.1.0/_downloads/close_event.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"source": [
18-
"\n# Close Event\n\n\n\n"
18+
"\n# Close Event\n\n\nExample to show connecting events that occur when the figure closes.\n\n"
1919
]
2020
},
2121
{

2.1.0/_downloads/close_event.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Close Event
44
===========
55
6+
Example to show connecting events that occur when the figure closes.
67
"""
78
from __future__ import print_function
89
import matplotlib.pyplot as plt

2.1.0/_downloads/data_browser.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"source": [
18-
"\n# Data Browser\n\n\n\n"
18+
"\n# Data Browser\n\n\nConnecting data between multiple canvases.\n\nThis example covers how to interact data with multiple canvases. This\nlet's you select and highlight a point on one axis, and generating the\ndata of that point on the other axis.\n\n"
1919
]
2020
},
2121
{

2.1.0/_downloads/data_browser.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Data Browser
44
============
55
6+
Connecting data between multiple canvases.
7+
8+
This example covers how to interact data with multiple canvases. This
9+
let's you select and highlight a point on one axis, and generating the
10+
data of that point on the other axis.
611
"""
712
import numpy as np
813

2.1.0/_downloads/gallery_jupyter.zip

552 Bytes
Binary file not shown.

2.1.0/_downloads/gallery_python.zip

540 Bytes
Binary file not shown.

2.1.0/_downloads/looking_glass.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"source": [
18-
"\n# Looking Glass\n\n\n\n"
18+
"\n# Looking Glass\n\n\nExample using mouse events to simulate a looking glass for inspecting data.\n\n"
1919
]
2020
},
2121
{

2.1.0/_downloads/looking_glass.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Looking Glass
44
=============
55
6+
Example using mouse events to simulate a looking glass for inspecting data.
67
"""
78
import numpy as np
89
import matplotlib.pyplot as plt

2.1.0/_downloads/movie_demo_sgskip.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"outputs": [],
2828
"source": [
29-
"from __future__ import print_function\n\nimport subprocess\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfiles = []\n\nfig, ax = plt.subplots(figsize=(5, 5))\nfor i in range(50): # 50 frames\n plt.cla()\n plt.imshow(np.random.rand(5, 5), interpolation='nearest')\n fname = '_tmp%03d.png' % i\n print('Saving frame', fname)\n plt.savefig(fname)\n files.append(fname)\n\nprint('Making movie animation.mpg - this may take a while')\nsubprocess.call(\"mencoder 'mf://_tmp*.png' -mf type=png:fps=10 -ovc lavc \"\n \"-lavcopts vcodec=wmv2 -oac copy -o animation.mpg\", shell=True)\n\n# cleanup\nfor fname in files:\n os.remove(fname)"
29+
"from __future__ import print_function\n\nimport os\nimport subprocess\nimport matplotlib.pyplot as plt\nimport numpy as np\n\n# Fixing random state for reproducibility\nnp.random.seed(19680801)\n\n\nfiles = []\n\nfig, ax = plt.subplots(figsize=(5, 5))\nfor i in range(50): # 50 frames\n plt.cla()\n plt.imshow(np.random.rand(5, 5), interpolation='nearest')\n fname = '_tmp%03d.png' % i\n print('Saving frame', fname)\n plt.savefig(fname)\n files.append(fname)\n\nprint('Making movie animation.mpg - this may take a while')\nsubprocess.call(\"mencoder 'mf://_tmp*.png' -mf type=png:fps=10 -ovc lavc \"\n \"-lavcopts vcodec=wmv2 -oac copy -o animation.mpg\", shell=True)\n\n# cleanup\nfor fname in files:\n os.remove(fname)"
3030
]
3131
}
3232
],

2.1.0/_downloads/movie_demo_sgskip.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
from __future__ import print_function
99

10+
import os
1011
import subprocess
1112
import matplotlib.pyplot as plt
1213
import numpy as np

0 commit comments

Comments
 (0)