Skip to content

Commit a2fbff9

Browse files
committed
Update 3.5.1 docs to commit 178ed0233d431669d1acdaff9e29b68b14d44718
1 parent 4ec6a86 commit a2fbff9

File tree

2,724 files changed

+52513
-27423
lines changed

Some content is hidden

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

2,724 files changed

+52513
-27423
lines changed

3.5.1/_downloads/0017d0c84e03d6c5e463e23d8e570671/line_collection.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"name": "python",
7272
"nbconvert_exporter": "python",
7373
"pygments_lexer": "ipython3",
74-
"version": "3.9.7"
74+
"version": "3.10.2"
7575
}
7676
},
7777
"nbformat": 4,

3.5.1/_downloads/00fb9b6278ae3996d0eda53a7198ae42/hatch_style_reference.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"name": "python",
9090
"nbconvert_exporter": "python",
9191
"pygments_lexer": "ipython3",
92-
"version": "3.9.7"
92+
"version": "3.10.2"
9393
}
9494
},
9595
"nbformat": 4,

3.5.1/_downloads/015f3d8484e7cc976026793f37ae6042/demo_ticklabel_alignment.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"name": "python",
4747
"nbconvert_exporter": "python",
4848
"pygments_lexer": "ipython3",
49-
"version": "3.9.7"
49+
"version": "3.10.2"
5050
}
5151
},
5252
"nbformat": 4,

3.5.1/_downloads/0234b09e9a73d4ee840adeb2955c67c3/lines_with_ticks_demo.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"name": "python",
4747
"nbconvert_exporter": "python",
4848
"pygments_lexer": "ipython3",
49-
"version": "3.9.7"
49+
"version": "3.10.2"
5050
}
5151
},
5252
"nbformat": 4,

3.5.1/_downloads/02be334176b42a5c4d2cd469f107ff92/images.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@
269269
"name": "python",
270270
"nbconvert_exporter": "python",
271271
"pygments_lexer": "ipython3",
272-
"version": "3.9.7"
272+
"version": "3.10.2"
273273
}
274274
},
275275
"nbformat": 4,

3.5.1/_downloads/02d0c4a462fb00f782e5ac08185695e5/linestyles.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"name": "python",
4747
"nbconvert_exporter": "python",
4848
"pygments_lexer": "ipython3",
49-
"version": "3.9.7"
49+
"version": "3.10.2"
5050
}
5151
},
5252
"nbformat": 4,

3.5.1/_downloads/0388069c25c84d6bc3a8b03a4f424035/fancyarrow_demo.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"name": "python",
5454
"nbconvert_exporter": "python",
5555
"pygments_lexer": "ipython3",
56-
"version": "3.9.7"
56+
"version": "3.10.2"
5757
}
5858
},
5959
"nbformat": 4,

3.5.1/_downloads/038e6d6e6393de9f0a88a65dd2e8fc4b/wire3d_animation_sgskip.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"outputs": [],
2828
"source": [
29-
"import matplotlib.pyplot as plt\nimport numpy as np\nimport time\n\n\ndef generate(X, Y, phi):\n \"\"\"\n Generates Z data for the points in the X, Y meshgrid and parameter phi.\n \"\"\"\n R = 1 - np.sqrt(X**2 + Y**2)\n return np.cos(2 * np.pi * X + phi) * R\n\n\nfig = plt.figure()\nax = fig.add_subplot(projection='3d')\n\n# Make the X, Y meshgrid.\nxs = np.linspace(-1, 1, 50)\nys = np.linspace(-1, 1, 50)\nX, Y = np.meshgrid(xs, ys)\n\n# Set the z axis limits so they aren't recalculated each frame.\nax.set_zlim(-1, 1)\n\n# Begin plotting.\nwframe = None\ntstart = time.time()\nfor phi in np.linspace(0, 180. / np.pi, 100):\n # If a line collection is already remove it before drawing.\n if wframe:\n ax.collections.remove(wframe)\n\n # Plot the new wireframe and pause briefly before continuing.\n Z = generate(X, Y, phi)\n wframe = ax.plot_wireframe(X, Y, Z, rstride=2, cstride=2)\n plt.pause(.001)\n\nprint('Average FPS: %f' % (100 / (time.time() - tstart)))"
29+
"import matplotlib.pyplot as plt\nimport numpy as np\nimport time\n\n\ndef generate(X, Y, phi):\n \"\"\"\n Generates Z data for the points in the X, Y meshgrid and parameter phi.\n \"\"\"\n R = 1 - np.sqrt(X**2 + Y**2)\n return np.cos(2 * np.pi * X + phi) * R\n\n\nfig = plt.figure()\nax = fig.add_subplot(projection='3d')\n\n# Make the X, Y meshgrid.\nxs = np.linspace(-1, 1, 50)\nys = np.linspace(-1, 1, 50)\nX, Y = np.meshgrid(xs, ys)\n\n# Set the z axis limits so they aren't recalculated each frame.\nax.set_zlim(-1, 1)\n\n# Begin plotting.\nwframe = None\ntstart = time.time()\nfor phi in np.linspace(0, 180. / np.pi, 100):\n # If a line collection is already remove it before drawing.\n if wframe:\n wframe.remove()\n\n # Plot the new wireframe and pause briefly before continuing.\n Z = generate(X, Y, phi)\n wframe = ax.plot_wireframe(X, Y, Z, rstride=2, cstride=2)\n plt.pause(.001)\n\nprint('Average FPS: %f' % (100 / (time.time() - tstart)))"
3030
]
3131
}
3232
],
@@ -46,7 +46,7 @@
4646
"name": "python",
4747
"nbconvert_exporter": "python",
4848
"pygments_lexer": "ipython3",
49-
"version": "3.9.7"
49+
"version": "3.10.2"
5050
}
5151
},
5252
"nbformat": 4,

3.5.1/_downloads/03a4ae19b81e22290c46a94bdf82cb9a/mandelbrot.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"name": "python",
4747
"nbconvert_exporter": "python",
4848
"pygments_lexer": "ipython3",
49-
"version": "3.9.7"
49+
"version": "3.10.2"
5050
}
5151
},
5252
"nbformat": 4,

3.5.1/_downloads/03ed879008811eb700082f93269e95f9/scatter3d.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"name": "python",
4747
"nbconvert_exporter": "python",
4848
"pygments_lexer": "ipython3",
49-
"version": "3.9.7"
49+
"version": "3.10.2"
5050
}
5151
},
5252
"nbformat": 4,

0 commit comments

Comments
 (0)